Dump of some setup but no feature adds

This commit is contained in:
Andrew Tomaka 2013-08-12 03:31:42 -04:00
parent 6e2414eb2e
commit 3978fec3d6
6 changed files with 53 additions and 1 deletions

11
spec/factories/lifts.rb Normal file
View file

@ -0,0 +1,11 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :lift do
parent_workout 1
lift_type "MyString"
sets 1
repititions 1
comment "MyText"
end
end