Flowdock
determine_superclass(opts) protected

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/example/example_group_factory.rb, line 71
        def determine_superclass(opts)
          if type = opts[:type]
            self[type]
          elsif opts[:spec_path] =~ /spec(\\|\/)(#{@example_group_types.keys.sort_by{|k| k.to_s.length}.reverse.join('|')})/
            self[$2 == '' ? nil : $2.to_sym]
          else
            self[nil]
          end
        end
Register or log in to add new notes.