thoughtbot--shoulda-matchers/lib/shoulda/matchers/doublespeak/structs.rb

9 lines
186 B
Ruby

module Shoulda
module Matchers
module Doublespeak
MethodCall = Struct.new(:args, :block)
MethodCallWithName = Struct.new(:method_name, :args, :block)
end
end
end