1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00

Follow Ruby conventions of double-under's on each side of the method name

This commit is contained in:
Joshua Clayton 2012-04-20 22:33:54 -04:00
parent 5b9aa488f6
commit 0aadd703a5
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ module FactoryGirl
end
def override_names
@evaluator.__overrides.keys
@evaluator.__override_names__
end
def hash_instance_methods_to_respond_to

View file

@ -51,8 +51,8 @@ module FactoryGirl
end
end
def __overrides
@overrides
def __override_names__
@overrides.keys
end
end
end