improve test setup with factory bot
This commit is contained in:
16
spec/factories/currencies.rb
Normal file
16
spec/factories/currencies.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: currencies
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# name :string not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
FactoryBot.define do
|
||||
factory :currency do
|
||||
name { "CAKE" }
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user