Created
January 27, 2016 02:39
-
-
Save beliar91/11f81e5804004a23ab97 to your computer and use it in GitHub Desktop.
spec/factories/task.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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