Mercurial > hg > soundsoftware-site
annotate .svn/pristine/a0/a0fde97b5566af05f8292290fc6fa97613507ae9.svn-base @ 1477:f2ad2199b49a bibplugin_integration
Close obsolete branch bibplugin_integration
author | Chris Cannam |
---|---|
date | Fri, 30 Nov 2012 14:41:31 +0000 |
parents | cbb26bc654de |
children |
rev | line source |
---|---|
Chris@909 | 1 class TimeEntry < ActiveRecord::Base |
Chris@909 | 2 generator_for(:spent_on) { Date.today } |
Chris@909 | 3 generator_for(:hours) { (rand * 10).round(2) } # 0.01 to 9.99 |
Chris@909 | 4 generator_for :user, :method => :generate_user |
Chris@909 | 5 |
Chris@909 | 6 def self.generate_user |
Chris@909 | 7 User.generate_with_protected! |
Chris@909 | 8 end |
Chris@909 | 9 end |