class Fluidity::Grammer::Should

Public Instance Methods

be() click to toggle source

def method_missing(s, *a, &b)

call(s, *a, &b)

end

# File lib/fluidity/grammer.rb, line 109
def be
  Be.new(@target, @negate)
end
not() click to toggle source
# File lib/fluidity/grammer.rb, line 113
def not
  Should.new(@target, !@negate)
end