canvas_sync 0.17.8.beta4 → 0.17.8
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 +4 -4
- data/lib/canvas_sync/version.rb +1 -1
- data/spec/dummy/log/test.log +9804 -0
- data/spec/job_batching/batch_spec.rb +1 -1
- data/spec/spec_helper.rb +2 -1
- metadata +3 -3
@@ -168,7 +168,7 @@ RSpec.describe CanvasSync::JobBatches::Batch do
|
|
168
168
|
CanvasSync::JobBatches::Batch.process_failed_job(bid, 'failed-job-id')
|
169
169
|
CanvasSync::JobBatches::Batch.process_failed_job(bid, failed_jid)
|
170
170
|
failed = CanvasSync::JobBatches::Batch.redis { |r| r.smembers("BID-#{bid}-failed") }
|
171
|
-
expect(failed).to
|
171
|
+
expect(failed).to contain_exactly('xxx', 'failed-job-id')
|
172
172
|
end
|
173
173
|
end
|
174
174
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
ENV["RAILS_ENV"] ||= 'test'
|
2
|
+
ENV['REDIS_URL'] ||= 'redis://localhost:6379/9'
|
3
|
+
|
2
4
|
require "canvas_sync"
|
3
5
|
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
4
6
|
# Rails::Generators.invoke("canvas_sync:install", ["--models", "all"], destination_root: Rails.root)
|
@@ -19,7 +21,6 @@ Sidekiq::Testing.server_middleware do |chain|
|
|
19
21
|
chain.add CanvasSync::JobBatches::Sidekiq::ServerMiddleware
|
20
22
|
end
|
21
23
|
|
22
|
-
require 'fakeredis/rspec'
|
23
24
|
Dir[File.dirname(__FILE__) + "/job_batching/support/**/*.rb"].each {|f| require f }
|
24
25
|
|
25
26
|
ActiveRecord::Migration.maintain_test_schema!
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: canvas_sync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.8
|
4
|
+
version: 0.17.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nate Collings
|
@@ -645,9 +645,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
645
645
|
version: '0'
|
646
646
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
647
647
|
requirements:
|
648
|
-
- - "
|
648
|
+
- - ">="
|
649
649
|
- !ruby/object:Gem::Version
|
650
|
-
version:
|
650
|
+
version: '0'
|
651
651
|
requirements: []
|
652
652
|
rubygems_version: 3.0.3
|
653
653
|
signing_key:
|