fog--fog/tests/helpers/responds_to_helper.rb

13 lines
248 B
Ruby

module Shindo
class Tests
def responds_to(method_names)
for method_name in [*method_names]
tests("#respond_to?(:#{method_name})").succeeds do
@instance.respond_to?(method_name)
end
end
end
end
end