░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/lib/support_helpers
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: due_date_cache_spec.rb
# frozen_string_literal: true # # Copyright (C) 2018 - 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_relative "../../spec_helper" describe SupportHelpers::DueDateCache do describe "CourseFixer" do let(:course) { Account.default.courses.create!(name: "ddc") } let(:user) { User.create! } it "calls DueDateCacher recompute course for a given course" do fixer = SupportHelpers::DueDateCache::CourseFixer.new("email", nil, course.id, user.id) expect(DueDateCacher).to receive(:recompute_course).with(course, update_grades: true, executing_user: user.id) fixer.fix end it "raises record not found for a bad course id" do fixer = SupportHelpers::DueDateCache::CourseFixer.new("email", nil, 1234, user.id) expect { fixer.fix }.to raise_error(ActiveRecord::RecordNotFound) end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 crocodoc_spec.rb
RB
4.6 KB
2023-09-24 03:36
EDIT
📄 due_date_cache_spec.rb
RB
1.4 KB
2023-09-24 03:39
EDIT
📄 fixer_spec.rb
RB
2.1 KB
2023-09-24 03:36
EDIT
📄 tii_spec.rb
RB
19.5 KB
2023-09-24 03:36
EDIT