░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/lib/canvas/plugins/ticketing_system
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: web_post_plugin_spec.rb
# frozen_string_literal: true # # Copyright (C) 2015 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. module Canvas::Plugins::TicketingSystem describe WebPostPlugin do describe "#export_error" do it "posts the error_report document to the configured endpoint" do ticketing = double document = { key: "value", info: "data" } report = double(to_document: document) endpoint = "http://someserver.com/some/endpoint" config = { endpoint_uri: endpoint } plugin = WebPostPlugin.new(ticketing) expect(HTTParty).to receive(:post).with(endpoint, include(body: document.to_json)) plugin.export_error(report, config) end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 base_plugin_spec.rb
RB
3 KB
2023-09-24 03:36
EDIT
📄 custom_error_spec.rb
RB
6 KB
2023-09-24 03:36
EDIT
📄 email_plugin_spec.rb
RB
3.6 KB
2023-09-24 03:36
EDIT
📄 web_post_plugin_spec.rb
RB
1.3 KB
2023-09-24 03:36
EDIT