Creates an instance of Spec::Example::Example and adds it to a collection of
examples of
the current example group.
# File lib/spec/example/example_group_methods.rb, line 106
def it(description=nil, &implementation)
e = new(description, &implementation)
example_objects << e
e
end