bearcat 1.4.9 → 1.4.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29d44295c93c7eb13d7acf83e253608348e36da68fcba2b0d5c20e24cf88865b
4
- data.tar.gz: 9606edfa90070ccc346f522d1706cc054a31209170ccc7349486ef1c55a66ee7
3
+ metadata.gz: b9624073616df55ad692ec0eb808b54f351b41449f5bd6a75806b4ef6934bb87
4
+ data.tar.gz: c6eae2b5630dfd0c6b588d782055d414f5b2ae90e2c455aa71d2784c8b7e55dd
5
5
  SHA512:
6
- metadata.gz: 86f25e018a97f17dafa030706effa894291c21df682d83c54c40f181dca2202f10aa3fff762ae2bab14c6bf75a50221bd7c325dbf278a1030caa082799fdcf9f
7
- data.tar.gz: 4fa13cb93bd6d6c537685f2d8d1894c6411165d1bc17ec9e7b13cc18eb648f67bcde8637c9477a733cbb5ebff047197f14bca74211b136ed28b0103c265d4ad3
6
+ metadata.gz: e2afebc157550a3372fdeee760f47b6bbba7a7c88f366d67f4d24abb8eee0f4e2deae063530b7eded3b6e608ff2213ba090abf2c4de3aa8c1a9c005aa1167701
7
+ data.tar.gz: 0dd4001957e00e222210560338f1790b3e09c9597e646375ac00ac3f7d6fd8028c5c91469ce77d69a9f07982d6f8f982e694d208ae389cff2f895d63722be773
data/bearcat.gemspec CHANGED
@@ -26,7 +26,5 @@ Gem::Specification.new do |gem|
26
26
 
27
27
  gem.add_dependency "activesupport"
28
28
  gem.add_dependency "footrest", ">= 0.2.2"
29
- # gem.add_dependency "faraday_middleware"
30
- # gem.add_dependency "logging", ">= 2.2.2"
31
29
  gem.add_dependency "paul_walker", "~> 0.1.1"
32
30
  end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bearcat
4
+ class Client < Footrest::Client
5
+ module LearningOutcomes
6
+
7
+ def learning_outcome(outcome, params={})
8
+ get("/api/v1/outcomes/#{outcome}", params)
9
+ end
10
+
11
+ def update_learning_outcome(outcome, params={})
12
+ put("/api/v1/outcomes/#{outcome}", params)
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -17,7 +17,14 @@ module Bearcat
17
17
  def show_group_page(group, url, params={})
18
18
  get("/api/v1/groups/#{group}/pages/#{url}", params)
19
19
  end
20
-
20
+
21
+ def add_course_page(course, params={})
22
+ post("api/v1/courses/#{course}/pages", params)
23
+ end
24
+
25
+ def add_group_page(group, params={})
26
+ post("/api/v1/groups/#{group}/pages", params)
27
+ end
21
28
  end
22
29
  end
23
30
  end
@@ -1,5 +1,4 @@
1
1
  require 'active_support/core_ext/hash'
2
- require 'faraday_middleware'
3
2
  require 'footrest/client'
4
3
  require 'paul_walker'
5
4
 
@@ -14,12 +13,6 @@ module Bearcat
14
13
  include "Bearcat::Client::#{mname}".constantize
15
14
  end
16
15
 
17
- def set_connection(config)
18
- super
19
- # connection.builder.delete(Faraday::Request::Multipart)
20
- # connection.builder.insert(0, FaradayMiddleware::EncodeJson)
21
- end
22
-
23
16
  # Override Footrest request for ApiArray support
24
17
  def request(method, &block)
25
18
  enforce_rate_limits
@@ -1,3 +1,3 @@
1
1
  module Bearcat
2
- VERSION = '1.4.9' unless defined?(Bearcat::VERSION)
2
+ VERSION = '1.4.12' unless defined?(Bearcat::VERSION)
3
3
  end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'helper'
4
+
5
+ describe Bearcat::Client::LearningOutcomes do
6
+ before do
7
+ @client = Bearcat::Client.new(prefix: "http://canvas.instructure.com", token: "test_token")
8
+ end
9
+
10
+ it "returns an individual learning outcome" do
11
+ stub_get(@client, "/api/v1/outcomes/1").to_return(json_response("learning_outcomes.json"))
12
+ outcome = @client.learning_outcome(1)
13
+ outcome["id"].should == 1
14
+ outcome["context_type"].should == "Course"
15
+ outcome["title"].should == "First Outcome"
16
+ end
17
+
18
+ it "updates an individual learning outcome" do
19
+ stub_put(@client, "/api/v1/outcomes/1").to_return(json_response("learning_outcomes.json"))
20
+ outcome = @client.update_learning_outcome(1)
21
+ outcome["id"].should == 1
22
+ outcome["context_type"].should == "Course"
23
+ outcome["title"].should == "First Outcome"
24
+ end
25
+ end
@@ -0,0 +1,32 @@
1
+ {
2
+ "id": 1,
3
+ "context_id": 1,
4
+ "context_type": "Course",
5
+ "vendor_guid": null,
6
+ "display_name": "",
7
+ "title": "First Outcome",
8
+ "url": "/api/v1/outcomes/1",
9
+ "can_edit": true,
10
+ "has_updateable_rubrics": false,
11
+ "description": "<p>Description</p>",
12
+ "friendly_description": null,
13
+ "points_possible": 5.0,
14
+ "mastery_points": 3.0,
15
+ "ratings": [
16
+ {
17
+ "description": "Exceeds Expectations",
18
+ "points": 5.0
19
+ },
20
+ {
21
+ "description": "Meets Expectations",
22
+ "points": 3.0
23
+ },
24
+ {
25
+ "description": "Does Not Meet Expectations",
26
+ "points": 0.0
27
+ }
28
+ ],
29
+ "calculation_method": "decaying_average",
30
+ "calculation_int": 65,
31
+ "assessed": true
32
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bearcat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.9
4
+ version: 1.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Mills, Jake Sorce
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-01 00:00:00.000000000 Z
11
+ date: 2022-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -158,6 +158,7 @@ files:
158
158
  - lib/bearcat/client/group_categories.rb
159
159
  - lib/bearcat/client/group_memberships.rb
160
160
  - lib/bearcat/client/groups.rb
161
+ - lib/bearcat/client/learning_outcomes.rb
161
162
  - lib/bearcat/client/module_items.rb
162
163
  - lib/bearcat/client/modules.rb
163
164
  - lib/bearcat/client/o_auth2.rb
@@ -202,6 +203,7 @@ files:
202
203
  - spec/bearcat/client/group_categories_spec.rb
203
204
  - spec/bearcat/client/group_membership_spec.rb
204
205
  - spec/bearcat/client/groups_spec.rb
206
+ - spec/bearcat/client/learning_outcomes_spec.rb
205
207
  - spec/bearcat/client/module_items_spec.rb
206
208
  - spec/bearcat/client/modules_spec.rb
207
209
  - spec/bearcat/client/o_auth2_spec.rb
@@ -318,6 +320,7 @@ files:
318
320
  - spec/fixtures/group_category_groups.json
319
321
  - spec/fixtures/group_conferences.json
320
322
  - spec/fixtures/group_membership.json
323
+ - spec/fixtures/learning_outcome.json
321
324
  - spec/fixtures/link_unlink_outcome.json
322
325
  - spec/fixtures/merge_user.json
323
326
  - spec/fixtures/module.json
@@ -365,10 +368,10 @@ files:
365
368
  - spec/fixtures/user_page_views.json
366
369
  - spec/fixtures/user_profile.json
367
370
  - spec/helper.rb
368
- homepage:
371
+ homepage:
369
372
  licenses: []
370
373
  metadata: {}
371
- post_install_message:
374
+ post_install_message:
372
375
  rdoc_options: []
373
376
  require_paths:
374
377
  - lib
@@ -384,193 +387,195 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
387
  version: '0'
385
388
  requirements: []
386
389
  rubygems_version: 3.0.3
387
- signing_key:
390
+ signing_key:
388
391
  specification_version: 4
389
392
  summary: Canvas API
390
393
  test_files:
391
394
  - spec/bearcat_spec.rb
392
- - spec/helper.rb
393
395
  - spec/bearcat/client_spec.rb
396
+ - spec/bearcat/group_memberships_spec.rb
394
397
  - spec/bearcat/api_array_spec.rb
395
- - spec/bearcat/client/external_tools_spec.rb
396
- - spec/bearcat/client/groups_spec.rb
397
- - spec/bearcat/client/outcomes_spec.rb
398
- - spec/bearcat/client/submissions_spec.rb
399
- - spec/bearcat/client/sections_spec.rb
400
- - spec/bearcat/client/blueprint_courses_spec.rb
401
- - spec/bearcat/client/outcome_groups_spec.rb
402
- - spec/bearcat/client/quizzes_spec.rb
398
+ - spec/bearcat/client/canvas_files_spec.rb
399
+ - spec/bearcat/client/folders_spec.rb
403
400
  - spec/bearcat/client/conferences_spec.rb
404
- - spec/bearcat/client/search_spec.rb
405
- - spec/bearcat/client/reports_spec.rb
406
- - spec/bearcat/client/group_categories_spec.rb
407
- - spec/bearcat/client/content_migrations_spec.rb
401
+ - spec/bearcat/client/conversations_spec.rb
402
+ - spec/bearcat/client/outcome_groups_spec.rb
403
+ - spec/bearcat/client/assignment_groups_spec.rb
408
404
  - spec/bearcat/client/assignments_spec.rb
409
- - spec/bearcat/client/group_membership_spec.rb
410
- - spec/bearcat/client/analytics_spec.rb
411
- - spec/bearcat/client/module_items_spec.rb
412
- - spec/bearcat/client/modules_spec.rb
413
405
  - spec/bearcat/client/rubric_association_spec.rb
406
+ - spec/bearcat/client/o_auth2_spec.rb
407
+ - spec/bearcat/client/search_spec.rb
408
+ - spec/bearcat/client/calendar_events_spec.rb
409
+ - spec/bearcat/client/pages_spec.rb
410
+ - spec/bearcat/client/modules_spec.rb
411
+ - spec/bearcat/client/discussions_spec.rb
412
+ - spec/bearcat/client/files_spec.rb
414
413
  - spec/bearcat/client/roles_spec.rb
414
+ - spec/bearcat/client/graph_ql_spec.rb
415
+ - spec/bearcat/client/group_categories_spec.rb
415
416
  - spec/bearcat/client/rubric_assessment_spec.rb
416
- - spec/bearcat/client/folders_spec.rb
417
+ - spec/bearcat/client/blueprint_courses_spec.rb
418
+ - spec/bearcat/client/submissions_spec.rb
419
+ - spec/bearcat/client/module_items_spec.rb
420
+ - spec/bearcat/client/content_migrations_spec.rb
421
+ - spec/bearcat/client/custom_gradebook_columns_spec.rb
422
+ - spec/bearcat/client/enrollments_spec.rb
423
+ - spec/bearcat/client/analytics_spec.rb
424
+ - spec/bearcat/client/content_exports_spec.rb
425
+ - spec/bearcat/client/external_tools_spec.rb
417
426
  - spec/bearcat/client/rubric_spec.rb
418
- - spec/bearcat/client/files_spec.rb
419
427
  - spec/bearcat/client/accounts_spec.rb
420
- - spec/bearcat/client/canvas_files_spec.rb
421
- - spec/bearcat/client/pages_spec.rb
422
- - spec/bearcat/client/content_exports_spec.rb
423
- - spec/bearcat/client/graph_ql_spec.rb
424
- - spec/bearcat/client/o_auth2_spec.rb
428
+ - spec/bearcat/client/learning_outcomes_spec.rb
429
+ - spec/bearcat/client/outcomes_spec.rb
425
430
  - spec/bearcat/client/courses_spec.rb
426
- - spec/bearcat/client/custom_gradebook_columns_spec.rb
427
- - spec/bearcat/client/enrollments_spec.rb
428
- - spec/bearcat/client/conversations_spec.rb
431
+ - spec/bearcat/client/reports_spec.rb
429
432
  - spec/bearcat/client/users_spec.rb
430
- - spec/bearcat/client/calendar_events_spec.rb
431
- - spec/bearcat/client/assignment_groups_spec.rb
432
- - spec/bearcat/client/discussions_spec.rb
433
- - spec/bearcat/group_memberships_spec.rb
434
- - spec/fixtures/add_user.json
435
- - spec/fixtures/calendar_event.json
433
+ - spec/bearcat/client/sections_spec.rb
434
+ - spec/bearcat/client/group_membership_spec.rb
435
+ - spec/bearcat/client/groups_spec.rb
436
+ - spec/bearcat/client/quizzes_spec.rb
437
+ - spec/helper.rb
438
+ - spec/fixtures/account_grading_standards.json
439
+ - spec/fixtures/add_custom_user_data.json
436
440
  - spec/fixtures/assignment_group.json
437
- - spec/fixtures/outcome_result.json
438
- - spec/fixtures/pages.json
439
- - spec/fixtures/course_grading_standards.json
440
- - spec/fixtures/user_avatars.json
441
- - spec/fixtures/account_user.json
441
+ - spec/fixtures/account_groups.json
442
+ - spec/fixtures/update_outcome.json
443
+ - spec/fixtures/section_enrollments.json
444
+ - spec/fixtures/outcome_groups.json
445
+ - spec/fixtures/assignments.json
446
+ - spec/fixtures/course_files.json
447
+ - spec/fixtures/assignment_section_override.json
448
+ - spec/fixtures/delete_course.json
442
449
  - spec/fixtures/course_folder.json
443
- - spec/fixtures/rubric_association.json
444
- - spec/fixtures/outcome_group_import.json
445
- - spec/fixtures/edited_group_category.json
446
- - spec/fixtures/course_copy.json
447
- - spec/fixtures/single_account.json
448
- - spec/fixtures/module.json
449
- - spec/fixtures/blueprint_update_assocations_success.json
450
- - spec/fixtures/account_admin_create.json
451
- - spec/fixtures/cc.imscc
452
- - spec/fixtures/discussion_topics.json
450
+ - spec/fixtures/ok.json
453
451
  - spec/fixtures/account_sub_accounts.json
454
- - spec/fixtures/created_group_category.json
455
- - spec/fixtures/user_page_views.json
456
- - spec/fixtures/delete_custom_data_scope.json
457
- - spec/fixtures/file.csv
458
- - spec/fixtures/dashboard.json
459
- - spec/fixtures/submissions/submission.json
460
- - spec/fixtures/create_course_discussion.json
461
- - spec/fixtures/conversation.json
462
- - spec/fixtures/communication_channels.json
452
+ - spec/fixtures/course_sections.json
453
+ - spec/fixtures/merge_user.json
454
+ - spec/fixtures/bearcat.jpg
455
+ - spec/fixtures/create_group_discussion.json
456
+ - spec/fixtures/course_enrollments.json
463
457
  - spec/fixtures/account_users.json
464
- - spec/fixtures/accounts.json
465
- - spec/fixtures/deleted_group.json
466
- - spec/fixtures/course_files.json
467
- - spec/fixtures/group_membership.json
458
+ - spec/fixtures/no_custom_data.json
459
+ - spec/fixtures/communication_channels.json
460
+ - spec/fixtures/edited_group_category.json
461
+ - spec/fixtures/rubric_assessment.json
462
+ - spec/fixtures/paged_body.json
463
+ - spec/fixtures/canvas_files/upload_success.json
464
+ - spec/fixtures/canvas_files/declare_file.json
465
+ - spec/fixtures/account_reports.json
466
+ - spec/fixtures/outcomes.json
467
+ - spec/fixtures/search_find_recipients.json
468
468
  - spec/fixtures/content_migration_files/upload_success.json
469
- - spec/fixtures/content_migration_files/response.json
470
469
  - spec/fixtures/content_migration_files/content_migration.json
471
- - spec/fixtures/outcome_subgroup.json
470
+ - spec/fixtures/content_migration_files/response.json
471
+ - spec/fixtures/created_assignment.json
472
+ - spec/fixtures/course_conferences.json
473
+ - spec/fixtures/create_outcome_in_group.json
474
+ - spec/fixtures/delete_custom_data_scope.json
475
+ - spec/fixtures/created_group_category.json
476
+ - spec/fixtures/created_course.json
477
+ - spec/fixtures/assignment_groups.json
478
+ - spec/fixtures/section.json
479
+ - spec/fixtures/create_section.json
480
+ - spec/fixtures/user_page_views.json
481
+ - spec/fixtures/account_admin_create.json
482
+ - spec/fixtures/assignment.json
483
+ - spec/fixtures/calendar_event.json
484
+ - spec/fixtures/blueprint_subscriptions.json
485
+ - spec/fixtures/blueprint_update_assocations_success.json
486
+ - spec/fixtures/course.json
487
+ - spec/fixtures/rubric_association.json
488
+ - spec/fixtures/external_tools.json
489
+ - spec/fixtures/conversation.json
490
+ - spec/fixtures/external_tool.json
491
+ - spec/fixtures/course_students.json
492
+ - spec/fixtures/updated_course.json
493
+ - spec/fixtures/discussion_topics.json
494
+ - spec/fixtures/user_enrollments.json
495
+ - spec/fixtures/account_roles.json
496
+ - spec/fixtures/add_user.json
497
+ - spec/fixtures/discussion_entry_replies.json
498
+ - spec/fixtures/report_history.json
472
499
  - spec/fixtures/gradebook_history.json
473
- - spec/fixtures/custom_gradebook_columns/custom_gradebook_columns.json
474
- - spec/fixtures/custom_gradebook_columns/gradebook_column_progress.json
475
- - spec/fixtures/custom_gradebook_columns/column_data.json
476
- - spec/fixtures/custom_gradebook_columns/custom_gradebook_column.json
500
+ - spec/fixtures/account_sis_imports.json
477
501
  - spec/fixtures/update_section.json
502
+ - spec/fixtures/conclude_enrollment.json
503
+ - spec/fixtures/start_report.json
504
+ - spec/fixtures/custom_data.json
505
+ - spec/fixtures/rubric.json
506
+ - spec/fixtures/account_role.json
507
+ - spec/fixtures/update_outcome_group.json
508
+ - spec/fixtures/module_item.json
509
+ - spec/fixtures/report_status.json
510
+ - spec/fixtures/enroll_student.json
511
+ - spec/fixtures/group_category.json
512
+ - spec/fixtures/delete_group_category.json
513
+ - spec/fixtures/dashboard.json
514
+ - spec/fixtures/edited_group.json
515
+ - spec/fixtures/department_level_participation.json
516
+ - spec/fixtures/outcome_result.json
517
+ - spec/fixtures/file.csv
518
+ - spec/fixtures/course_copy.json
478
519
  - spec/fixtures/user_logins.json
479
- - spec/fixtures/paged_body.json
480
- - spec/fixtures/outcomes.json
481
- - spec/fixtures/discussion_entry_replies.json
520
+ - spec/fixtures/module_item_sequence.json
521
+ - spec/fixtures/enrollment_terms.json
522
+ - spec/fixtures/blueprint_migration.json
523
+ - spec/fixtures/cc.imscc
524
+ - spec/fixtures/user_profile.json
525
+ - spec/fixtures/create_course_discussion.json
526
+ - spec/fixtures/custom_food_data.json
527
+ - spec/fixtures/created_module.json
482
528
  - spec/fixtures/course_groups.json
483
- - spec/fixtures/account_reports_start_result.json
484
- - spec/fixtures/no_custom_data.json
485
- - spec/fixtures/bearcat.jpg
486
- - spec/fixtures/report_list.json
487
- - spec/fixtures/graph_ql_scores.json
529
+ - spec/fixtures/reactivate_enrollment.json
530
+ - spec/fixtures/blueprint_template.json
531
+ - spec/fixtures/account_courses.json
532
+ - spec/fixtures/calendar_events.json
533
+ - spec/fixtures/submissions/submission.json
488
534
  - spec/fixtures/link_unlink_outcome.json
489
- - spec/fixtures/group_category_groups.json
490
- - spec/fixtures/ok.json
491
- - spec/fixtures/add_custom_user_data.json
492
- - spec/fixtures/report_status.json
493
- - spec/fixtures/account_role.json
494
- - spec/fixtures/account_roles.json
495
- - spec/fixtures/user_enrollments.json
496
- - spec/fixtures/course_enrollments.json
535
+ - spec/fixtures/account_reports_index.json
497
536
  - spec/fixtures/module_items.json
498
- - spec/fixtures/department_level_participation.json
499
- - spec/fixtures/group_category.json
500
- - spec/fixtures/section_enrollments.json
501
- - spec/fixtures/create_group_discussion.json
502
- - spec/fixtures/user_profile.json
503
- - spec/fixtures/external_tools.json
504
- - spec/fixtures/create_section.json
505
- - spec/fixtures/assignment_groups.json
506
- - spec/fixtures/outcome_subgroups.json
507
- - spec/fixtures/updated_course.json
508
- - spec/fixtures/account_sis_imports.json
509
- - spec/fixtures/account_admins.json
510
- - spec/fixtures/department_level_statistics.json
537
+ - spec/fixtures/access_token.json
538
+ - spec/fixtures/progress.json
539
+ - spec/fixtures/module.json
540
+ - spec/fixtures/group_categories.json
511
541
  - spec/fixtures/course_folders.json
542
+ - spec/fixtures/department_level_statistics.json
512
543
  - spec/fixtures/account_admin_delete.json
513
- - spec/fixtures/content_export.json
514
- - spec/fixtures/enroll_student.json
515
- - spec/fixtures/external_tool.json
516
- - spec/fixtures/discussion_entries.json
517
- - spec/fixtures/assignment.json
518
- - spec/fixtures/report_history.json
519
- - spec/fixtures/edited_group.json
520
- - spec/fixtures/account_reports_index.json
521
- - spec/fixtures/created_module.json
522
- - spec/fixtures/account_reports.json
523
- - spec/fixtures/quizzes/quiz_extension.json
524
- - spec/fixtures/quizzes/quiz_assignment_override.json
525
- - spec/fixtures/quizzes/course_quiz.json
544
+ - spec/fixtures/account_reports_result_success.json
545
+ - spec/fixtures/deleted_conversation.json
546
+ - spec/fixtures/learning_outcome.json
547
+ - spec/fixtures/user_details.json
548
+ - spec/fixtures/outcome_group_import.json
549
+ - spec/fixtures/modules.json
550
+ - spec/fixtures/group.json
551
+ - spec/fixtures/outcome_subgroup.json
552
+ - spec/fixtures/outcome_subgroups.json
553
+ - spec/fixtures/delete_section.json
554
+ - spec/fixtures/account_user.json
555
+ - spec/fixtures/accounts.json
556
+ - spec/fixtures/account_admins.json
557
+ - spec/fixtures/report_list.json
558
+ - spec/fixtures/group_membership.json
526
559
  - spec/fixtures/quizzes/course_quizzes.json
527
560
  - spec/fixtures/quizzes/course_quiz_questions.json
528
- - spec/fixtures/course.json
529
- - spec/fixtures/search_find_recipients.json
530
- - spec/fixtures/reactivate_enrollment.json
531
- - spec/fixtures/enrollment_terms.json
561
+ - spec/fixtures/quizzes/quiz_assignment_override.json
562
+ - spec/fixtures/quizzes/quiz_extension.json
563
+ - spec/fixtures/quizzes/course_quiz.json
564
+ - spec/fixtures/content_export.json
565
+ - spec/fixtures/created_group.json
566
+ - spec/fixtures/pages.json
567
+ - spec/fixtures/discussion_entries.json
568
+ - spec/fixtures/single_account.json
569
+ - spec/fixtures/group_category_groups.json
532
570
  - spec/fixtures/created_group_membership.json
533
- - spec/fixtures/rubric.json
534
- - spec/fixtures/merge_user.json
535
- - spec/fixtures/section.json
536
- - spec/fixtures/blueprint_migration.json
537
- - spec/fixtures/blueprint_subscriptions.json
538
- - spec/fixtures/create_outcome_in_group.json
539
- - spec/fixtures/assignments.json
540
- - spec/fixtures/group_categories.json
541
- - spec/fixtures/blueprint_template.json
542
- - spec/fixtures/delete_section.json
543
- - spec/fixtures/update_outcome_group.json
571
+ - spec/fixtures/user_avatars.json
572
+ - spec/fixtures/graph_ql_scores.json
573
+ - spec/fixtures/custom_gradebook_columns/gradebook_column_progress.json
574
+ - spec/fixtures/custom_gradebook_columns/custom_gradebook_column.json
575
+ - spec/fixtures/custom_gradebook_columns/custom_gradebook_columns.json
576
+ - spec/fixtures/custom_gradebook_columns/column_data.json
577
+ - spec/fixtures/account_reports_start_result.json
578
+ - spec/fixtures/course_grading_standards.json
544
579
  - spec/fixtures/group_conferences.json
545
- - spec/fixtures/created_group.json
546
- - spec/fixtures/outcome_groups.json
547
- - spec/fixtures/progress.json
548
- - spec/fixtures/delete_course.json
549
- - spec/fixtures/canvas_files/upload_success.json
550
- - spec/fixtures/canvas_files/declare_file.json
551
- - spec/fixtures/account_grading_standards.json
552
- - spec/fixtures/course_sections.json
553
- - spec/fixtures/course_conferences.json
554
- - spec/fixtures/user_details.json
555
- - spec/fixtures/module_item_sequence.json
556
- - spec/fixtures/custom_food_data.json
557
- - spec/fixtures/update_outcome.json
558
580
  - spec/fixtures/discussion_topic.json
559
- - spec/fixtures/group.json
560
- - spec/fixtures/assignment_section_override.json
561
- - spec/fixtures/account_reports_result_success.json
562
- - spec/fixtures/rubric_assessment.json
563
- - spec/fixtures/calendar_events.json
564
- - spec/fixtures/deleted_conversation.json
565
- - spec/fixtures/created_assignment.json
566
- - spec/fixtures/start_report.json
567
- - spec/fixtures/conclude_enrollment.json
568
- - spec/fixtures/custom_data.json
569
- - spec/fixtures/created_course.json
570
- - spec/fixtures/account_groups.json
571
- - spec/fixtures/modules.json
572
- - spec/fixtures/course_students.json
573
- - spec/fixtures/access_token.json
574
- - spec/fixtures/delete_group_category.json
575
- - spec/fixtures/module_item.json
576
- - spec/fixtures/account_courses.json
581
+ - spec/fixtures/deleted_group.json