Class: RR::StubCreator

Inherits:
Creator show all
Defined in:
lib/rr/stub_creator.rb

Overview

RR::StubCreator uses RR::StubCreator#method_missing to create a Scenario that acts like a stub.

The following example stubs method_name with arg1 and arg2 returning return_value.

stub(subject).method_name(arg1, arg2) { return_value }

The StubCreator also supports a block sytnax.

stub(subject) do |m|
  m.method_name(arg1, arg2) { return_value }
end

Defined Under Namespace

Modules: InstanceMethods

Method Summary

Methods inherited from Creator

#initialize

Constructor Details

This class inherits a constructor from RR::Creator