1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/lib/factory_girl/null_object.rb
2012-03-16 16:43:21 -04:00

7 lines
112 B
Ruby

module FactoryGirl
class NullObject < ::BasicObject
def method_missing(*args)
nil
end
end
end