Module: ActiveFixtures::Time::Helper
- Defined in:
- lib/active-fixtures/time.rb
Instance Method Summary collapse
Instance Method Details
#af_time(name) ⇒ Object
5 6 7 8 9 10 11 |
# File 'lib/active-fixtures/time.rb', line 5 def af_time(name) moment = Time[name].moment block_given? ? Timecop.freeze(moment){ yield } : moment end |