-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Integration: Minitest::Spec
Mike Burns edited this page Apr 14, 2023
·
1 revision
class Minitest::Spec
include FactoryBot::Syntax::Methods
end
Including FactoryBot::Syntax::Methods
gives you access to build
, build_list
, create
, create_list
, and attributes_for
directly in your tests, such as:
it "renders itself" do
user = create(:user, articles: build_list(:article, 2)) # not FactoryBot.create or FactoryBot.build_list
writer = build(:writer) # not FactoryBot.build
user.render(writer)
_(writer.to_s).must_equal "User with two articles"
end