Ruby on Rails
Fabrikmädchen
Suche…
Fabriken definieren
Wenn Sie über eine ActiveRecord-Benutzerklasse mit Namen und E-Mail-Attributen verfügen, können Sie eine Factory dafür erstellen, indem Sie FactoryGirl dazu raten lassen:
FactoryGirl.define do
factory :user do # it will guess the User class
name "John"
email "[email protected]"
end
end
Oder Sie können es explizit machen und sogar seinen Namen ändern:
FactoryGirl.define do
factory :user_jack, class: User do
name "Jack"
email "[email protected]"
end
end
Dann können Sie in Ihrer Spezifikation die FactoryGirl-Methoden wie folgt verwenden:
# To create a non saved instance of the User class filled with John's data
build(:user)
# and to create a non saved instance of the User class filled with Jack's data
build(:user_jack)
Die gebräuchlichsten Methoden sind:
# Build returns a non saved instance
user = build(:user)
# Create returns a saved instance
user = create(:user)
# Attributes_for returns a hash of the attributes used to build an instance
attrs = attributes_for(:user)
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow