mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
229 B
10 lines
229 B
FactoryGirl.define do
|
|
factory :time_entry do
|
|
loggable_type User.to_s
|
|
logger_type User.to_s
|
|
start_date Time.now
|
|
end_date Time.now
|
|
log_action_id 1
|
|
log_action_type ActsAsLoggable::UserAction.to_s
|
|
end
|
|
end
|
|
|