We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f72ae06 commit 1ba54c5Copy full SHA for 1ba54c5
1 file changed
sentry-rails/spec/active_job/shared_examples/argument_serialization.rb
@@ -35,7 +35,7 @@ def event_arguments
35
expect(event_arguments).to eq([{ wrapper: { post: post.to_global_id.to_s } }])
36
end
37
38
- it "expands integer ranges into arrays" do
+ it "expands integer ranges into arrays", skip: RAILS_VERSION < 7.0 do
39
expect do
40
failing_job.perform_later(1..3)
41
drain
@@ -44,7 +44,7 @@ def event_arguments
44
expect(event_arguments).to eq([[1, 2, 3]])
45
46
47
- it "stringifies ActiveSupport::TimeWithZone ranges preserving the boundary operator" do
+ it "stringifies ActiveSupport::TimeWithZone ranges preserving the boundary operator", skip: RAILS_VERSION < 7.0 do
48
range = 1.day.ago...Time.zone.now
49
50
0 commit comments