adding all of botlist, initial add
[botlist.git] / openbotlist / WEB-INF / lib / ruby / rspec / spec / spec / example / subclassing_example_group_spec.rb
blob888f2ceb3d6417ff7f8fbecf4b33e0a307096842
1 require File.dirname(__FILE__) + '/../../spec_helper'
3 module Spec
4   module Example
5     class GrandParentExampleGroup < Spec::Example::ExampleGroup
6       describe "Grandparent ExampleGroup"
7     end
9     class ParentExampleGroup < GrandParentExampleGroup
10       describe "Parent ExampleGroup"
11       it "should bar" do
12       end
13     end
15     class ChildExampleGroup < ParentExampleGroup
16       describe "Child ExampleGroup"
17       it "should bam" do
18       end
19     end
21     describe ChildExampleGroup do
23     end
24   end
25 end