]> git.openstreetmap.org Git - rails.git/blob - vendor/gems/rspec-1.1.2/lib/spec/example/example_group.rb
Show whether a trace is public or private in the trace list, so that a user can easil...
[rails.git] / vendor / gems / rspec-1.1.2 / lib / spec / example / example_group.rb
1 module Spec
2   module Example
3     # The superclass for all regular RSpec examples.
4     class ExampleGroup
5       extend Spec::Example::ExampleGroupMethods
6       include Spec::Example::ExampleMethods
7
8       def initialize(defined_description, &implementation)
9         @_defined_description = defined_description
10         @_implementation = implementation
11       end
12     end
13   end
14 end
15
16 Spec::ExampleGroup = Spec::Example::ExampleGroup