example(description=nil, options={}, &implementation)
public
Creates an instance of the current example group
class and adds it
to a collection of examples of the
current example group.
Show source
def example(description=nil, options={}, &implementation)
e = new(description, options, &implementation)
example_objects << e
e
end