Sök…


Definiera fabriker

Om du har en ActiveRecord-användarklass med namn- och e-postattribut kan du skapa en fabrik för det genom att få FactoryGirl att gissa det:

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

Eller så kan du göra det uttryckligt och till och med ändra namnet:

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

Sedan i din spec kan du använda FactoryGirls metoder med dessa, så här:

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

De vanligaste metoderna är:

# 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow