bearcat 1.5.34 → 1.5.34.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4efbb8a21e14b67c67719db1a277dfae50d63b4d2ee498e33d6221a8df088ed7
4
- data.tar.gz: 236065689610b4d34b652881197e03cf92fd007c5ebd15d892838fad3791444f
3
+ metadata.gz: a4fa342c6933ca3034926e590b8225ef554262273f4a69f85eaa83ac4e70dabe
4
+ data.tar.gz: edb1152c765ef30c755f1bd84ed2b1247fdd055f9d6b3950555d1add643e175a
5
5
  SHA512:
6
- metadata.gz: 14e20a797d21d1af6b429193f235114c8b65caa733e26288cce3fc6507e5deaa82f668e4a461f819aa75acb20518e7b106bf16abbbdad957211600ae3032cc0f
7
- data.tar.gz: d31adf9b9b18a383e6474ebbc9397f83fabafc1d8d6245eb70fd7f86a7db8f3d6e7fc51c3cc27997e75cf85d1828dc88312484207ed6905b9204f338a06f06a4
6
+ metadata.gz: a1fe3988a58e238660b9f5523339ce3c9376197327d736997a6c6ac65e3f42e80818020680165038b1394966437ee8258821232188797421d9dc845b5cf9e624
7
+ data.tar.gz: dbd47e0a9f91fd644f7c06a5c1d49a44cc8cf4d92b381b7edb4ed0d4569e09ebaa4cc9a58dcc2139b870004d9c42fd1074eabed96035d6beca2b4d23280a112a
File without changes
File without changes
@@ -5,14 +5,21 @@ module Bearcat
5
5
  module Reports
6
6
  extend ClientModule
7
7
 
8
- prefix "/api/v1/accounts/:account/reports/" do
8
+ PREFIX = "/api/v1/accounts"
9
+
10
+ prefix "#{PREFIX}/:account/reports/" do
9
11
  get :report_list
10
- post :start_report, ":report_name"
11
12
  get :report_history, ":report_name"
12
13
  get :report_status, ":report_name/:report_id"
13
14
  delete :delete_report, ":report_name/:report_id"
14
15
  end
15
16
 
17
+ def start_report(canvas_account_id, report_name)
18
+ post("#{PREFIX}/#{canvas_account_id}/reports/#{report_name}")
19
+ rescue Bearcat::MiscExceptions::Conflict => e
20
+ JSON.parse(e.response.response_body)
21
+ end
22
+
16
23
  def download_report(url, save_location=nil)
17
24
  #This method takes the verified URL returned in a Canvas report (attachment['url']), and if
18
25
  #a save_location is included, it will download it in chunks to the disk to save memory. You
File without changes
File without changes
@@ -0,0 +1,10 @@
1
+ module Bearcat
2
+ module MiscExceptions
3
+ # This exception is not part of the Footrest::HttpError module
4
+ class Conflict < Footrest::HttpError::BadRequest
5
+ def self.===(exception)
6
+ exception.status == 409
7
+ end
8
+ end
9
+ end
10
+ end
@@ -11,8 +11,8 @@ module Bearcat
11
11
  KNOWN_REDIS_URL_ENVS = %w[REDIS_URL REDISTOGO_URL REDISCLOUD_URL].freeze
12
12
 
13
13
  class << self
14
- def configured?(prefix, explicit: true)
15
- determine_redis_provider(prefix: prefix, explicit: explicit).present?
14
+ def configured?(prefix, explicit: false)
15
+ determine_redis_provider(prefix: prefix, explicit: true)
16
16
  end
17
17
 
18
18
  def create(options = {})
File without changes
@@ -1,3 +1,3 @@
1
1
  module Bearcat
2
- VERSION = '1.5.34' unless defined?(Bearcat::VERSION)
2
+ VERSION = '1.5.34.1' unless defined?(Bearcat::VERSION)
3
3
  end
data/lib/bearcat.rb CHANGED
@@ -1,21 +1,18 @@
1
1
  require 'bearcat/version'
2
2
  require 'bearcat/client'
3
- require 'bearcat/redis_connection'
3
+ require 'bearcat/misc_exceptions/conflict'
4
4
 
5
5
  module Bearcat
6
6
  class << self
7
7
  require 'logger'
8
8
  attr_accessor :master_rate_limit
9
- attr_writer :rate_limit_min, :rate_limits, :max_sleep_seconds,
10
- :min_sleep_seconds, :logger, :rate_limiter
9
+ attr_writer :rate_limit_min, :rate_limits, :max_sleep_seconds, :min_sleep_seconds, :logger
11
10
 
12
11
  def configure
13
12
  yield self if block_given?
14
13
  end
15
14
 
16
- def rate_limiter
17
- @rate_limiter
18
- end
15
+ attr_accessor :rate_limiter
19
16
 
20
17
  def rate_limit_min
21
18
  @rate_limit_min ||= 175
@@ -31,6 +28,7 @@ module Bearcat
31
28
 
32
29
  def logger
33
30
  return @logger if defined? @logger
31
+
34
32
  @logger = Logger.new(STDOUT)
35
33
  @logger.level = Logger::DEBUG
36
34
  @logger
@@ -38,14 +36,13 @@ module Bearcat
38
36
 
39
37
  def redis_pool
40
38
  require 'bearcat/redis_connection'
41
- @redis_pool ||= Bearcat::RedisConnection.create(env_prefix: "BEARCAT")
39
+ @redis_pool ||= Bearcat::RedisConnection.create(env_prefix: 'BEARCAT')
42
40
  end
43
41
 
44
- def redis
45
- raise ArgumentError, "requires a block" unless block_given?
46
- redis_pool.with do |conn|
47
- yield conn
48
- end
42
+ def redis(&block)
43
+ raise ArgumentError, 'requires a block' unless block_given?
44
+
45
+ redis_pool.with(&block)
49
46
  end
50
47
  end
51
48
  end
File without changes
data/spec/helper.rb CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bearcat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.34
4
+ version: 1.5.34.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Instructure CustomDev
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-19 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rake
@@ -220,6 +219,7 @@ files:
220
219
  - lib/bearcat/client/tabs.rb
221
220
  - lib/bearcat/client/users.rb
222
221
  - lib/bearcat/client_module.rb
222
+ - lib/bearcat/misc_exceptions/conflict.rb
223
223
  - lib/bearcat/rate_limiting.rb
224
224
  - lib/bearcat/rate_limiting/functions.lua
225
225
  - lib/bearcat/rate_limiting/increment_bucket.lua
@@ -429,10 +429,8 @@ files:
429
429
  - spec/fixtures/user_page_views.json
430
430
  - spec/fixtures/user_profile.json
431
431
  - spec/helper.rb
432
- homepage:
433
432
  licenses: []
434
433
  metadata: {}
435
- post_install_message:
436
434
  rdoc_options: []
437
435
  require_paths:
438
436
  - lib
@@ -447,199 +445,198 @@ required_rubygems_version: !ruby/object:Gem::Requirement
447
445
  - !ruby/object:Gem::Version
448
446
  version: '0'
449
447
  requirements: []
450
- rubygems_version: 3.0.3.1
451
- signing_key:
448
+ rubygems_version: 3.6.9
452
449
  specification_version: 4
453
450
  summary: Canvas API
454
451
  test_files:
455
- - spec/bearcat_spec.rb
456
- - spec/bearcat/client_spec.rb
457
452
  - spec/bearcat/api_array_spec.rb
458
- - spec/bearcat/rate_limiting_spec.rb
459
- - spec/bearcat/stub_bearcat_spec.rb
460
- - spec/bearcat/client/canvas_files_spec.rb
461
- - spec/bearcat/client/folders_spec.rb
462
- - spec/bearcat/client/conferences_spec.rb
463
- - spec/bearcat/client/conversations_spec.rb
464
- - spec/bearcat/client/outcome_groups_spec.rb
453
+ - spec/bearcat/client/accounts_spec.rb
454
+ - spec/bearcat/client/analytics_spec.rb
465
455
  - spec/bearcat/client/assignment_groups_spec.rb
466
456
  - spec/bearcat/client/assignments_spec.rb
467
- - spec/bearcat/client/rubric_association_spec.rb
468
- - spec/bearcat/client/o_auth2_spec.rb
469
- - spec/bearcat/client/search_spec.rb
470
- - spec/bearcat/client/calendar_events_spec.rb
471
- - spec/bearcat/client/group_memberships_spec.rb
472
- - spec/bearcat/client/pages_spec.rb
473
- - spec/bearcat/client/modules_spec.rb
474
- - spec/bearcat/client/discussions_spec.rb
475
- - spec/bearcat/client/files_spec.rb
476
- - spec/bearcat/client/roles_spec.rb
477
- - spec/bearcat/client/graph_ql_spec.rb
478
- - spec/bearcat/client/group_categories_spec.rb
479
- - spec/bearcat/client/rubric_assessment_spec.rb
480
457
  - spec/bearcat/client/blueprint_courses_spec.rb
481
- - spec/bearcat/client/submissions_spec.rb
482
- - spec/bearcat/client/module_items_spec.rb
458
+ - spec/bearcat/client/calendar_events_spec.rb
459
+ - spec/bearcat/client/canvas_files_spec.rb
460
+ - spec/bearcat/client/conferences_spec.rb
461
+ - spec/bearcat/client/content_exports_spec.rb
483
462
  - spec/bearcat/client/content_migrations_spec.rb
463
+ - spec/bearcat/client/conversations_spec.rb
464
+ - spec/bearcat/client/courses_spec.rb
484
465
  - spec/bearcat/client/custom_gradebook_columns_spec.rb
466
+ - spec/bearcat/client/discussions_spec.rb
485
467
  - spec/bearcat/client/enrollments_spec.rb
486
- - spec/bearcat/client/analytics_spec.rb
487
- - spec/bearcat/client/content_exports_spec.rb
488
468
  - spec/bearcat/client/external_tools_spec.rb
489
- - spec/bearcat/client/rubric_spec.rb
490
- - spec/bearcat/client/accounts_spec.rb
469
+ - spec/bearcat/client/files_spec.rb
470
+ - spec/bearcat/client/folders_spec.rb
471
+ - spec/bearcat/client/graph_ql_spec.rb
472
+ - spec/bearcat/client/group_categories_spec.rb
473
+ - spec/bearcat/client/group_membership_spec.rb
474
+ - spec/bearcat/client/group_memberships_spec.rb
475
+ - spec/bearcat/client/groups_spec.rb
491
476
  - spec/bearcat/client/learning_outcomes_spec.rb
477
+ - spec/bearcat/client/module_items_spec.rb
478
+ - spec/bearcat/client/modules_spec.rb
479
+ - spec/bearcat/client/o_auth2_spec.rb
480
+ - spec/bearcat/client/outcome_groups_spec.rb
492
481
  - spec/bearcat/client/outcomes_spec.rb
493
- - spec/bearcat/client/courses_spec.rb
482
+ - spec/bearcat/client/pages_spec.rb
483
+ - spec/bearcat/client/quizzes_spec.rb
494
484
  - spec/bearcat/client/reports_spec.rb
495
- - spec/bearcat/client/users_spec.rb
485
+ - spec/bearcat/client/roles_spec.rb
486
+ - spec/bearcat/client/rubric_assessment_spec.rb
487
+ - spec/bearcat/client/rubric_association_spec.rb
488
+ - spec/bearcat/client/rubric_spec.rb
489
+ - spec/bearcat/client/search_spec.rb
496
490
  - spec/bearcat/client/sections_spec.rb
497
- - spec/bearcat/client/group_membership_spec.rb
498
- - spec/bearcat/client/groups_spec.rb
499
- - spec/bearcat/client/quizzes_spec.rb
500
- - spec/helper.rb
491
+ - spec/bearcat/client/submissions_spec.rb
492
+ - spec/bearcat/client/users_spec.rb
493
+ - spec/bearcat/client_spec.rb
494
+ - spec/bearcat/rate_limiting_spec.rb
495
+ - spec/bearcat/stub_bearcat_spec.rb
496
+ - spec/bearcat_spec.rb
497
+ - spec/fixtures/access_token.json
498
+ - spec/fixtures/account_admin_create.json
499
+ - spec/fixtures/account_admin_delete.json
500
+ - spec/fixtures/account_admins.json
501
+ - spec/fixtures/account_courses.json
501
502
  - spec/fixtures/account_grading_standards.json
503
+ - spec/fixtures/account_groups.json
504
+ - spec/fixtures/account_reports.json
505
+ - spec/fixtures/account_reports_index.json
506
+ - spec/fixtures/account_reports_result_success.json
507
+ - spec/fixtures/account_reports_start_result.json
508
+ - spec/fixtures/account_role.json
509
+ - spec/fixtures/account_roles.json
510
+ - spec/fixtures/account_sis_imports.json
511
+ - spec/fixtures/account_sub_accounts.json
512
+ - spec/fixtures/account_user.json
513
+ - spec/fixtures/account_users.json
514
+ - spec/fixtures/accounts.json
502
515
  - spec/fixtures/add_custom_user_data.json
516
+ - spec/fixtures/add_user.json
517
+ - spec/fixtures/assignment.json
503
518
  - spec/fixtures/assignment_group.json
504
- - spec/fixtures/account_groups.json
505
- - spec/fixtures/update_outcome.json
506
- - spec/fixtures/section_enrollments.json
507
- - spec/fixtures/outcome_groups.json
508
- - spec/fixtures/assignments.json
509
- - spec/fixtures/course_files.json
519
+ - spec/fixtures/assignment_groups.json
510
520
  - spec/fixtures/assignment_section_override.json
511
- - spec/fixtures/delete_course.json
512
- - spec/fixtures/course_folder.json
513
- - spec/fixtures/ok.json
514
- - spec/fixtures/account_sub_accounts.json
515
- - spec/fixtures/course_sections.json
516
- - spec/fixtures/merge_user.json
521
+ - spec/fixtures/assignments.json
517
522
  - spec/fixtures/bearcat.jpg
518
- - spec/fixtures/create_group_discussion.json
519
- - spec/fixtures/course_enrollments.json
520
- - spec/fixtures/account_users.json
521
- - spec/fixtures/no_custom_data.json
522
- - spec/fixtures/communication_channels.json
523
- - spec/fixtures/edited_group_category.json
524
- - spec/fixtures/rubric_assessment.json
525
- - spec/fixtures/paged_body.json
526
- - spec/fixtures/canvas_files/upload_success.json
523
+ - spec/fixtures/blueprint_migration.json
524
+ - spec/fixtures/blueprint_subscriptions.json
525
+ - spec/fixtures/blueprint_template.json
526
+ - spec/fixtures/blueprint_update_assocations_success.json
527
+ - spec/fixtures/calendar_event.json
528
+ - spec/fixtures/calendar_events.json
527
529
  - spec/fixtures/canvas_files/declare_file.json
528
- - spec/fixtures/account_reports.json
529
- - spec/fixtures/outcomes.json
530
- - spec/fixtures/search_find_recipients.json
531
- - spec/fixtures/content_migration_files/upload_success.json
530
+ - spec/fixtures/canvas_files/upload_success.json
531
+ - spec/fixtures/cc.imscc
532
+ - spec/fixtures/communication_channels.json
533
+ - spec/fixtures/conclude_enrollment.json
534
+ - spec/fixtures/content_export.json
532
535
  - spec/fixtures/content_migration_files/content_migration.json
533
536
  - spec/fixtures/content_migration_files/response.json
534
- - spec/fixtures/created_assignment.json
537
+ - spec/fixtures/content_migration_files/upload_success.json
538
+ - spec/fixtures/conversation.json
539
+ - spec/fixtures/course.json
535
540
  - spec/fixtures/course_conferences.json
541
+ - spec/fixtures/course_copy.json
542
+ - spec/fixtures/course_enrollments.json
543
+ - spec/fixtures/course_files.json
544
+ - spec/fixtures/course_folder.json
545
+ - spec/fixtures/course_folders.json
546
+ - spec/fixtures/course_grading_standards.json
547
+ - spec/fixtures/course_groups.json
548
+ - spec/fixtures/course_sections.json
549
+ - spec/fixtures/course_settings.json
550
+ - spec/fixtures/course_students.json
551
+ - spec/fixtures/create_course_discussion.json
552
+ - spec/fixtures/create_group_discussion.json
536
553
  - spec/fixtures/create_outcome_in_group.json
537
- - spec/fixtures/delete_custom_data_scope.json
538
- - spec/fixtures/created_group_category.json
539
- - spec/fixtures/created_course.json
540
- - spec/fixtures/assignment_groups.json
541
- - spec/fixtures/section.json
542
554
  - spec/fixtures/create_section.json
543
- - spec/fixtures/user_page_views.json
544
- - spec/fixtures/account_admin_create.json
545
- - spec/fixtures/assignment.json
546
- - spec/fixtures/calendar_event.json
547
- - spec/fixtures/blueprint_subscriptions.json
548
- - spec/fixtures/blueprint_update_assocations_success.json
549
- - spec/fixtures/course.json
550
- - spec/fixtures/rubric_association.json
551
- - spec/fixtures/external_tools.json
552
- - spec/fixtures/conversation.json
553
- - spec/fixtures/external_tool.json
554
- - spec/fixtures/course_students.json
555
- - spec/fixtures/updated_course.json
556
- - spec/fixtures/discussion_topics.json
557
- - spec/fixtures/user_enrollments.json
558
- - spec/fixtures/account_roles.json
559
- - spec/fixtures/add_user.json
560
- - spec/fixtures/discussion_entry_replies.json
561
- - spec/fixtures/report_history.json
562
- - spec/fixtures/gradebook_history.json
563
- - spec/fixtures/account_sis_imports.json
564
- - spec/fixtures/update_section.json
565
- - spec/fixtures/conclude_enrollment.json
566
- - spec/fixtures/start_report.json
555
+ - spec/fixtures/created_assignment.json
556
+ - spec/fixtures/created_course.json
557
+ - spec/fixtures/created_group.json
558
+ - spec/fixtures/created_group_category.json
559
+ - spec/fixtures/created_group_membership.json
560
+ - spec/fixtures/created_module.json
567
561
  - spec/fixtures/custom_data.json
568
- - spec/fixtures/rubric.json
569
- - spec/fixtures/account_role.json
570
- - spec/fixtures/update_outcome_group.json
571
- - spec/fixtures/module_item.json
572
- - spec/fixtures/report_status.json
573
- - spec/fixtures/enroll_student.json
574
- - spec/fixtures/group_category.json
575
- - spec/fixtures/delete_group_category.json
562
+ - spec/fixtures/custom_food_data.json
563
+ - spec/fixtures/custom_gradebook_columns/column_data.json
564
+ - spec/fixtures/custom_gradebook_columns/custom_gradebook_column.json
565
+ - spec/fixtures/custom_gradebook_columns/custom_gradebook_columns.json
566
+ - spec/fixtures/custom_gradebook_columns/gradebook_column_progress.json
576
567
  - spec/fixtures/dashboard.json
577
- - spec/fixtures/edited_group.json
568
+ - spec/fixtures/delete_course.json
569
+ - spec/fixtures/delete_custom_data_scope.json
570
+ - spec/fixtures/delete_group_category.json
571
+ - spec/fixtures/delete_section.json
572
+ - spec/fixtures/deleted_conversation.json
573
+ - spec/fixtures/deleted_group.json
578
574
  - spec/fixtures/department_level_participation.json
579
- - spec/fixtures/outcome_result.json
580
- - spec/fixtures/file.csv
581
- - spec/fixtures/course_copy.json
582
- - spec/fixtures/user_logins.json
583
- - spec/fixtures/module_item_sequence.json
584
- - spec/fixtures/course_settings.json
575
+ - spec/fixtures/department_level_statistics.json
576
+ - spec/fixtures/discussion_entries.json
577
+ - spec/fixtures/discussion_entry_replies.json
578
+ - spec/fixtures/discussion_topic.json
579
+ - spec/fixtures/discussion_topics.json
580
+ - spec/fixtures/edited_group.json
581
+ - spec/fixtures/edited_group_category.json
582
+ - spec/fixtures/enroll_student.json
585
583
  - spec/fixtures/enrollment_terms.json
586
- - spec/fixtures/blueprint_migration.json
587
- - spec/fixtures/cc.imscc
588
- - spec/fixtures/user_profile.json
589
- - spec/fixtures/create_course_discussion.json
590
- - spec/fixtures/custom_food_data.json
591
- - spec/fixtures/created_module.json
592
- - spec/fixtures/course_groups.json
593
- - spec/fixtures/reactivate_enrollment.json
594
- - spec/fixtures/blueprint_template.json
595
- - spec/fixtures/account_courses.json
596
- - spec/fixtures/calendar_events.json
597
- - spec/fixtures/submissions/submission.json
598
- - spec/fixtures/link_unlink_outcome.json
599
- - spec/fixtures/account_reports_index.json
600
- - spec/fixtures/module_items.json
601
- - spec/fixtures/access_token.json
602
- - spec/fixtures/progress.json
603
- - spec/fixtures/module.json
584
+ - spec/fixtures/external_tool.json
585
+ - spec/fixtures/external_tools.json
586
+ - spec/fixtures/file.csv
587
+ - spec/fixtures/gradebook_history.json
588
+ - spec/fixtures/graph_ql_scores.json
589
+ - spec/fixtures/group.json
604
590
  - spec/fixtures/group_categories.json
605
- - spec/fixtures/course_folders.json
606
- - spec/fixtures/department_level_statistics.json
607
- - spec/fixtures/account_admin_delete.json
608
- - spec/fixtures/account_reports_result_success.json
609
- - spec/fixtures/deleted_conversation.json
591
+ - spec/fixtures/group_category.json
592
+ - spec/fixtures/group_category_groups.json
593
+ - spec/fixtures/group_conferences.json
594
+ - spec/fixtures/group_membership.json
610
595
  - spec/fixtures/learning_outcome.json
611
- - spec/fixtures/user_details.json
612
- - spec/fixtures/outcome_group_import.json
596
+ - spec/fixtures/link_unlink_outcome.json
597
+ - spec/fixtures/merge_user.json
598
+ - spec/fixtures/module.json
599
+ - spec/fixtures/module_item.json
600
+ - spec/fixtures/module_item_sequence.json
601
+ - spec/fixtures/module_items.json
613
602
  - spec/fixtures/modules.json
614
- - spec/fixtures/group.json
603
+ - spec/fixtures/no_custom_data.json
604
+ - spec/fixtures/ok.json
605
+ - spec/fixtures/outcome_group_import.json
606
+ - spec/fixtures/outcome_groups.json
607
+ - spec/fixtures/outcome_result.json
615
608
  - spec/fixtures/outcome_subgroup.json
616
609
  - spec/fixtures/outcome_subgroups.json
617
- - spec/fixtures/delete_section.json
618
- - spec/fixtures/account_user.json
619
- - spec/fixtures/accounts.json
620
- - spec/fixtures/account_admins.json
621
- - spec/fixtures/report_list.json
622
- - spec/fixtures/group_membership.json
623
- - spec/fixtures/quizzes/course_quizzes.json
610
+ - spec/fixtures/outcomes.json
611
+ - spec/fixtures/paged_body.json
612
+ - spec/fixtures/pages.json
613
+ - spec/fixtures/progress.json
614
+ - spec/fixtures/quizzes/course_quiz.json
624
615
  - spec/fixtures/quizzes/course_quiz_questions.json
616
+ - spec/fixtures/quizzes/course_quizzes.json
625
617
  - spec/fixtures/quizzes/quiz_assignment_override.json
626
618
  - spec/fixtures/quizzes/quiz_extension.json
627
- - spec/fixtures/quizzes/course_quiz.json
628
- - spec/fixtures/content_export.json
629
- - spec/fixtures/created_group.json
630
- - spec/fixtures/pages.json
631
- - spec/fixtures/discussion_entries.json
619
+ - spec/fixtures/reactivate_enrollment.json
620
+ - spec/fixtures/report_history.json
621
+ - spec/fixtures/report_list.json
622
+ - spec/fixtures/report_status.json
623
+ - spec/fixtures/rubric.json
624
+ - spec/fixtures/rubric_assessment.json
625
+ - spec/fixtures/rubric_association.json
626
+ - spec/fixtures/search_find_recipients.json
627
+ - spec/fixtures/section.json
628
+ - spec/fixtures/section_enrollments.json
632
629
  - spec/fixtures/single_account.json
633
- - spec/fixtures/group_category_groups.json
634
- - spec/fixtures/created_group_membership.json
630
+ - spec/fixtures/start_report.json
631
+ - spec/fixtures/submissions/submission.json
632
+ - spec/fixtures/update_outcome.json
633
+ - spec/fixtures/update_outcome_group.json
634
+ - spec/fixtures/update_section.json
635
+ - spec/fixtures/updated_course.json
635
636
  - spec/fixtures/user_avatars.json
636
- - spec/fixtures/graph_ql_scores.json
637
- - spec/fixtures/custom_gradebook_columns/gradebook_column_progress.json
638
- - spec/fixtures/custom_gradebook_columns/custom_gradebook_column.json
639
- - spec/fixtures/custom_gradebook_columns/custom_gradebook_columns.json
640
- - spec/fixtures/custom_gradebook_columns/column_data.json
641
- - spec/fixtures/account_reports_start_result.json
642
- - spec/fixtures/course_grading_standards.json
643
- - spec/fixtures/group_conferences.json
644
- - spec/fixtures/discussion_topic.json
645
- - spec/fixtures/deleted_group.json
637
+ - spec/fixtures/user_details.json
638
+ - spec/fixtures/user_enrollments.json
639
+ - spec/fixtures/user_logins.json
640
+ - spec/fixtures/user_page_views.json
641
+ - spec/fixtures/user_profile.json
642
+ - spec/helper.rb