Skip to content

Instantly share code, notes, and snippets.

@beliar91
Created January 27, 2016 02:39
Show Gist options
  • Save beliar91/11f81e5804004a23ab97 to your computer and use it in GitHub Desktop.
Save beliar91/11f81e5804004a23ab97 to your computer and use it in GitHub Desktop.
spec/factories/task.rb
FactoryGirl.define do
factory :task do |t|
t.status "Created"
t.completion_time 10
end
factory :task_two do |t|
t.status "Created"
t.completion_time 20
end
factory :task_not_valid do |t|
to_create {|instance| instance.save(validate: false) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment