aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/clean_ups.rb
blob: e366a113b771d3f5774ed5d44351f823db5ee2c0 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.define do
  factory :clean_up do
    referential
    begin_date { Date.today}
    end_date   { Date.today + 1.month }
    date_type  { :before }
  end
end