mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
7 lines
112 B
Ruby
7 lines
112 B
Ruby
module FactoryGirl
|
|
class NullObject < ::BasicObject
|
|
def method_missing(*args)
|
|
nil
|
|
end
|
|
end
|
|
end
|