aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/holidays.rb
blob: 531130c8a29466f0637d2c03db8038c9cc12dc80 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.define do

    factory :holiday do
        day Date.new(2010, 1, 1)
        description "New Year's Day"
    end

end