░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/views/accounts
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: _sis_batch_counts.html.erb_spec.rb
# frozen_string_literal: true # # Copyright (C) 2011 - 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 "../views_helper" describe "accounts/_sis_batch_counts" do it "renders sis count data" do data = { counts: { xlists: 2, enrollments: 3, courses: 5, users: 6, terms: 6, group_memberships: 7, group_categories: 2, groups: 8, sections: 9, accounts: 10, admins: 1, user_observers: 3, change_sis_ids: 3, logins: 0 } } report = double expect(report).to receive(:data).and_return(data) render partial: "accounts/sis_batch_counts", object: report map = { xlists: "Crosslists", group_memberships: "Group Enrollments", user_observers: "User Observers", change_sis_ids: "Change SIS IDs", group_categories: "Group Categories", } data[:counts].each_pair do |type, count| name = map[type] || type.to_s.capitalize expect(response.body).to match(/#{name}: #{count}/) end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 _sis_batch_counts.html.erb_spec.rb
RB
1.8 KB
2023-09-24 03:36
EDIT
📄 settings.html.erb_spec.rb
RB
25 KB
2023-09-24 03:39
EDIT