Created
July 31, 2015 19:29
-
-
Save yakovenkodenis/043ba3a18b782b4c8c91 to your computer and use it in GitHub Desktop.
FactoryGirl example
This file contains 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
# Пример файла в папке spec/factories | |
FactoryGirl.define do | |
factory :project do | |
sequence(:name) { |n| "My Project #{n}" } | |
client 'My Client' | |
archived false | |
end | |
end | |
# Использование в спеках | |
create(:user) <--- делает изменение в бд | |
build(:user) <--- не делает изменение в бд |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment