Szukaj…


Definiowanie fabryk

Jeśli masz klasę UserRecord User z atrybutami nazwy i adresu e-mail, możesz utworzyć dla niej fabrykę, zgadując ją:

FactoryGirl.define do
  factory :user do # it will guess the User class
    name     "John"
    email    "[email protected]"
  end
end

Możesz też wyrazić to wyraźnie, a nawet zmienić jego nazwę:

FactoryGirl.define do
  factory :user_jack, class: User do
    name     "Jack"
    email    "[email protected]"
  end
end

Następnie w specyfikacji możesz użyć metod FactoryGirl z tymi, takimi jak:

# 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)

Najpopularniejsze metody to:

# 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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow