diff options
author | Ruben Davila <rdavila84@gmail.com> | 2016-12-23 00:44:02 -0500 |
---|---|---|
committer | Ruben Davila <rdavila84@gmail.com> | 2017-01-15 11:10:04 -0500 |
commit | 17196a2ff31c4eb65fa9ecff6f7208171e26059b (patch) | |
tree | e9a491799b764c42f3c0c20cb33fa763ebb520df /spec/factories/timelogs.rb | |
parent | 64dd41a0e21360c380cab394f8a5c9b4945b7fd1 (diff) | |
download | gitlab-ce-17196a2ff31c4eb65fa9ecff6f7208171e26059b.tar.gz |
Backport backend work for time tracking.
Diffstat (limited to 'spec/factories/timelogs.rb')
-rw-r--r-- | spec/factories/timelogs.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/factories/timelogs.rb b/spec/factories/timelogs.rb new file mode 100644 index 00000000000..12fc4ec4486 --- /dev/null +++ b/spec/factories/timelogs.rb @@ -0,0 +1,9 @@ +# Read about factories at https://github.com/thoughtbot/factory_girl + +FactoryGirl.define do + factory :timelog do + time_spent 3600 + user + association :trackable, factory: :issue + end +end |