Browse Source

CLDC-4325: Turn off 2026 override

pull/3250/head
samyou-softwire 2 weeks ago
parent
commit
563f34fd3f
  1. 15
      spec/spec_helper.rb

15
spec/spec_helper.rb

@ -124,14 +124,13 @@ RSpec.configure do |config|
Singleton.__init__(FormHandler) Singleton.__init__(FormHandler)
end end
config.around do |example| # config.around do |example|
Timecop.travel(Time.zone.local(2026, 4, 1)) # Timecop.travel(Time.zone.local(2026, 4, 1))
Singleton.__init__(FormHandler) # Singleton.__init__(FormHandler)
example.run # example.run
Timecop.return # Timecop.travel(Time.zone.local(2026, 4, 1))
Singleton.__init__(FormHandler) # Singleton.__init__(FormHandler)
example.run # end
end
end end
RSpec::Matchers.define_negated_matcher :not_change, :change RSpec::Matchers.define_negated_matcher :not_change, :change

Loading…
Cancel
Save