░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/gem_integration/canvas_connect
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: meeting_archive_spec.rb
# frozen_string_literal: true # # Copyright (C) 2013 - 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/>. # require "nokogiri" describe CanvasConnect::MeetingArchive do subject { CanvasConnect::MeetingArchive.retrieve(38_230, mock_client.new).first } let(:mock_client) do Class.new do def sco_contents(*) Nokogiri::XML(<<~XML) <?xml version="1.0" encoding="utf-8"?> <results> <status code="ok"/> <scos> <sco sco-id="38230" source-sco-id="" folder-id="38223" type="content" icon="archive" display-seq="0" duration="0" is-folder="0"> <name>Test Recording</name> <url-path>/p3u8rj0rvuj/</url-path> <date-begin>2013-09-05T12:13:03.387-06:00</date-begin> <date-end>2013-09-05T12:13:28.970-06:00</date-end> <date-created>2013-09-05T12:13:03.387-06:00</date-created> <date-modified>2013-09-05T12:13:29.727-06:00</date-modified> </sco> <sco> </sco> </scos> </results> XML end end end it "returns the correct number" do expect(CanvasConnect::MeetingArchive.retrieve(38_230, mock_client.new).count).to eq 2 end it "returns the name" do expect(subject.name).to eq "Test Recording" end it "returns the url_path" do expect(subject.url_path).to eq "/p3u8rj0rvuj/" end it "returns the date_begin" do expect(subject.date_begin).to eq "2013-09-05T12:13:03.387-06:00" end it "returns the date end" do expect(subject.date_end).to eq "2013-09-05T12:13:28.970-06:00" end it "returns the date created" do expect(subject.date_created).to eq "2013-09-05T12:13:03.387-06:00" end it "returns the date modified" do expect(subject.date_modified).to eq "2013-09-05T12:13:29.727-06:00" end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 adobe_connect_conference_spec.rb
RB
1.8 KB
2023-09-24 03:36
EDIT
📄 adobe_connect_validator_spec.rb
RB
1.4 KB
2023-09-24 03:36
EDIT
📄 meeting_archive_spec.rb
RB
2.4 KB
2023-09-24 03:36
EDIT