module RSpec::Bash::Mocks::Matchers
Public Instance Methods
receive(*args)
click to toggle source
# File lib/rspec/bash/mocks/matchers.rb, line 9 def receive(*args) Receive.new(*args) end
receive_function(method_name, &block)
click to toggle source
# File lib/rspec/bash/mocks/matchers.rb, line 13 def receive_function(method_name, &block) ::RSpec::Mocks::Matchers::Receive.new(method_name, block) end
test_by(*args)
click to toggle source
# File lib/rspec/bash/mocks/matchers.rb, line 21 def test_by(*args) TestBy.new(*args) end
test_for(*args)
click to toggle source
# File lib/rspec/bash/mocks/matchers.rb, line 17 def test_for(*args) TestFor.new(*args) end