How to resolve factory_girl wrong number of arguments error
FactoryGirl
does not currently support initializers with arguments. So it fails when it's trying to do Room.new
when you run build
.
One simple workaround for this might be to monkey-patch your classes in your test setup to get around this issue. It's not the ideal solution, but you'll be able to run your tests.
So you'd need to do either one of these (just in your test setup code):
class Room
def initialize(length = nil, width = nil)
...
end
end
or
class Room
def initialize
...
end
end
The issue is discussed here:
https://github.com/thoughtbot/factory_girl/issues/42
...and here:
https://github.com/thoughtbot/factory_girl/issues/19
Now it does. Tested on version 4.1:
FactoryGirl.define do
factory :room do
length 10
width 20
initialize_with { new(length, width) }
end
end
Reference: documentation
What was useful for me, was enabling debug output for FactoryBot linting:
FactoryBot.lint verbose: true
see the documentation for the details