diff options
Diffstat (limited to 'spec/factories/holidays.rb')
-rw-r--r-- | spec/factories/holidays.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/factories/holidays.rb b/spec/factories/holidays.rb new file mode 100644 index 000000000..531130c8a --- /dev/null +++ b/spec/factories/holidays.rb @@ -0,0 +1,8 @@ +FactoryGirl.define do + + factory :holiday do + day Date.new(2010, 1, 1) + description "New Year's Day" + end + +end |