Flowdock
method_missing(sym, *args, &block) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/matchers/have.rb, line 18
      def method_missing(sym, *args, &block)
        @collection_name = sym
        @plural_collection_name = Inflector.pluralize(sym.to_s) if Object.const_defined?(:Inflector)
        @args = args
        @block = block
        self
      end
Register or log in to add new notes.