0
0
Ruby on Railsframework~5 mins

Fixture and factory usage in Ruby on Rails - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a fixture in Rails testing?
A fixture is a fixed set of sample data stored in YAML files that Rails loads into the test database before running tests. It helps tests run with known data.
Click to reveal answer
beginner
What is a factory in Rails testing?
A factory is a Ruby object that builds test data dynamically. It creates objects with default or customized attributes when tests run, often using Factory Bot.
Click to reveal answer
intermediate
How do fixtures and factories differ in flexibility?
Fixtures use static data loaded before tests, so they are less flexible. Factories create data on demand with customizable attributes, making them more flexible for varied test cases.
Click to reveal answer
beginner
How do you define a simple factory for a User model using Factory Bot?
You define it like this:
FactoryBot.define do
  factory :user do
    name { "Test User" }
    email { "user@example.com" }
  end
end
Click to reveal answer
intermediate
Why might you choose factories over fixtures in Rails tests?
Factories allow creating fresh, customized data for each test, reducing dependencies and making tests easier to maintain and understand. Fixtures can become brittle with static data.
Click to reveal answer
What file format do Rails fixtures use to store test data?
AYAML
BJSON
CXML
DCSV
Which gem is commonly used to create factories in Rails?
AFactory Bot
BPry
CCapybara
DRSpec
Which is a benefit of using factories over fixtures?
AStatic data for all tests
BFaster test runs always
CDynamic, customizable test data
DNo need to write any code
How do you access fixture data in a Rails test?
AUsing instance variables
BUsing fixture names as methods
CUsing FactoryBot.create
DUsing SQL queries
Which statement about fixtures is true?
AThey generate data at runtime dynamically
BThey cannot be used with Rails
CThey require Factory Bot to work
DThey are loaded once before tests run
Explain the difference between fixtures and factories in Rails testing.
Think about how test data is created and used.
You got /4 concepts.
    Describe how you would define and use a factory for a User model in a Rails test.
    Focus on the syntax and usage steps.
    You got /4 concepts.