To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / exemplars / time_entry_exemplar.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (265 Bytes)

1
class TimeEntry < ActiveRecord::Base
2
  generator_for(:spent_on) { Date.today }
3
  generator_for(:hours) { (rand * 10).round(2) } # 0.01 to 9.99
4
  generator_for :user, :method => :generate_user
5

    
6
  def self.generate_user
7
    User.generate_with_protected!
8
  end
9
  
10
end