mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
6 lines
126 B
Ruby
6 lines
126 B
Ruby
![]() |
RSpec::Matchers.define :be_about_now do
|
||
|
match do |actual|
|
||
|
expect(actual).to be_within(2.seconds).of(Time.now)
|
||
|
end
|
||
|
end
|