class RSpec::Core::ExampleGroup

def self.descendants

def self.descendants
  @_descendants ||= [self] + children.inject([]) {|list, c| list + c.descendants}
end