The syntactic sugar of factories with the speed of fixtures.
FixtureBot lets you define your test data in a Ruby DSL and compiles it into standard Rails fixture YAML files. The generated YAML is deterministic and should be checked into git, just like a lockfile. Your tests never see FixtureBot at runtime; Rails just loads the YAML fixtures as usual.
Features:
- Ruby DSL for defining records, associations, and join tables
- Generators for filling in required columns (like email) across all records
- Stable IDs so foreign keys are consistent and diffs are clean across runs
- Schema auto-detection from your Rails database (no manual column lists)
- Auto-generates before your test suite runs (RSpec and Minitest)
More background at BeautifulRuby.com.
# spec/fixtures.rb
FixtureBot.define do
# Generators fill in required columns so you don't have to repeat yourself.
# |fixture| gives you the fixture key; bare methods give column values.
user.email { |fixture| "#{fixture.key}@example.com" }
user :brad do
name "Brad"
email "brad@example.com" # overrides the generator
end
user :alice do
name "Alice" # email filled in by generator: "alice@example.com"
end
user :deactivated do
name "Ghost"
email nil # explicit nil, generator skipped, email set to null
end
post :hello_world do
title "Hello World"
body "Welcome to the blog!"
author :brad # sets author_id to brad's stable ID
tags :ruby, :rails # creates rows in posts_tags
end
tag.name { |fixture| fixture.key.to_s.capitalize }
tag :ruby # name: "Ruby"
tag :rails # name: "Rails"
endThis generates YAML files like users.yml, posts.yml, tags.yml, and posts_tags.yml in your fixtures directory. Use them in tests like any other fixture:
# RSpec
RSpec.describe Post, type: :model do
fixtures :all
it "belongs to an author" do
post = posts(:hello_world)
expect(post.author).to eq(users(:brad))
end
end
# Minitest
class PostTest < ActiveSupport::TestCase
def test_belongs_to_author
post = posts(:hello_world)
assert_equal users(:brad), post.author
end
endAdd to your Gemfile:
gem "fixturebot-rails"The easiest way to get started:
rails generate fixturebot:installThis creates spec/fixtures.rb (RSpec) or test/fixtures.rb (Minitest) with a skeleton DSL file and adds the appropriate require to your test helper.
Add to spec/rails_helper.rb:
require "fixturebot/rspec"Create spec/fixtures.rb with your fixture definitions.
Fixtures are auto-generated before each suite run, no rake task needed.
Add to test/test_helper.rb:
require "fixturebot/minitest"Create test/fixtures.rb with your fixture definitions.
Fixtures are auto-generated when the helper is loaded, no rake task needed.
A fixturebot:compile rake task is also available if you prefer manual control:
bundle exec rake fixturebot:compileFixtureBot auto-detects your fixtures file (test/fixtures.rb or spec/fixtures.rb) and derives the output directory by stripping .rb (e.g. spec/fixtures.rb writes to spec/fixtures/). To override:
# config/application.rb or config/environments/test.rb
config.fixturebot.fixtures_file = "test/my_fixtures.rb"
config.fixturebot.output_dir = "test/fixtures"Define named records with literal column values:
FixtureBot.define do
user :brad do
name "Brad"
email "brad@example.com"
end
endRecords without a block get an auto-generated ID and any generator defaults:
FixtureBot.define do
user.email { |fixture| "#{fixture.key}@example.com" }
user :alice
# => { id: <stable_id>, email: "alice@example.com" }
endGenerators set default column values. They run for each record that doesn't explicitly set that column. Generators are never created implicitly; columns without a value or generator are omitted from the YAML output (Rails uses the database column default).
FixtureBot.define do
user.email { |fixture| "#{fixture.key}@example.com" }
endThe generator block receives a fixture object as a block parameter with access to fixture.key (the record's symbol name). Bare methods inside the block refer to column values set on the record.
When a generator covers all the columns you need, records don't need a block at all:
FixtureBot.define do
tag.name { |fixture| fixture.key.to_s.capitalize }
tag :ruby # name: "Ruby"
tag :rails # name: "Rails"
tag :testing # name: "Testing"
endA literal value shadows the generator. An explicit nil also shadows it:
FixtureBot.define do
user.email { |fixture| "#{fixture.key}@example.com" }
user :brad do
name "Brad"
email "brad@hey.com" # literal, skips the generator
end
user :alice do
name "Alice"
# no email set, generator produces "alice@example.com"
end
user :deactivated do
name "Ghost"
email nil # explicit nil, skips the generator, sets email to null
end
endReference other records by name for belongs_to:
FixtureBot.define do
post :hello_world do
title "Hello World"
author :brad # sets author_id to brad's stable ID
end
endReference multiple records for join table associations:
FixtureBot.define do
post :hello_world do
title "Hello World"
tags :ruby, :rails # creates rows in posts_tags
end
endBy default, the block is evaluated implicitly. Table methods like user and post are available directly:
FixtureBot.define do
user :brad do
name "Brad"
end
endIf you prefer an explicit receiver (useful for editor autocompletion or clarity in large files), pass a block argument:
FixtureBot.define do |t|
t.user :brad do
name "Brad"
end
endBoth styles are equivalent. Record blocks (the inner do...end) are always implicit.
FixtureBot reads your database schema automatically in Rails. Outside of Rails, you can define it by hand:
FixtureBot::Schema.define do
table :users, singular: :user, columns: [:name, :email]
table :posts, singular: :post, columns: [:title, :body, :author_id] do
belongs_to :author, table: :users
end
table :tags, singular: :tag, columns: [:name]
join_table :posts_tags, :posts, :tags
endRails fixtures are YAML files that get loaded into the database once before your test suite runs. Each test wraps in a transaction and rolls back, so the data is always clean and tests are fast. This is the approach FixtureBot builds on.
The problem is writing YAML by hand. Foreign keys are magic strings (author: brad), there's no way to DRY up repeated columns, and large fixture files are hard to read. FixtureBot gives you a Ruby DSL that compiles down to the same YAML, so you keep the speed of fixtures without the pain of maintaining them.
FactoryBot creates records on the fly inside each test. You call create(:user) and it inserts a row. This makes tests self-contained and easy to read, but it's slow. Every test that needs data pays the cost of inserting records, and complex object graphs lead to cascading create calls.
FixtureBot borrows the DSL feel of FactoryBot (named records, associations by symbol, default generators) but compiles to fixtures instead of inserting at runtime. You get the ergonomics of factories with the speed of fixtures.
Oaken and FixtureBot share the same motivation: replace hand-written YAML fixtures with a Ruby DSL. They take very different approaches.
Oaken inserts records into the database at runtime using ActiveRecord::Base#create!. It also supports loading different seed files per test case (seed "cases/pagination"), which means your data set can vary across tests. This flexibility comes at a cost: you lose the "load once, wrap every test in a transaction" speed advantage that makes Rails fixtures fast. It's closer to factories in that regard, with more structure around organizing seed scripts.
FixtureBot is more opinionated. One fixture file, one data set, compiled to plain YAML and checked into git. At test time, FixtureBot is out of the picture entirely. Rails loads the YAML fixtures once and wraps each test in a transaction as usual. No runtime dependency, no per-test seeding, no seed file organization to manage.
| FixtureBot | Rails fixtures | FactoryBot | Oaken | |
|---|---|---|---|---|
| Define data in | Ruby DSL | YAML | Ruby DSL | Ruby scripts |
| Output | YAML files in git | YAML files in git | Database rows per test | Database rows at boot |
| Runtime dependency | None | None | Required per test | Required at boot |
| Data set | One set, loaded once | One set, loaded once | Built per test | Per-test via seed files |
| Speed | Fast (fixtures) | Fast (fixtures) | Slow (inserts per test) | Varies |
| Stable IDs | Deterministic | Deterministic | Database-assigned | Database-assigned |
After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt.
Try the playground without Rails:
bundle exec exe/fixturebot show ./playground/blog