Flowdock
method

explicit_subject

Importance_0
RSpec latest stable (1.3.1) - 0 notes - Class: Spec::Example::Subject::ExampleGroupMethods
explicit_subject() private

No documentation

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

Hide source
# File lib/spec/example/subject.rb, line 40
        def explicit_subject
          group = self
          while group.respond_to?(:explicit_subject_block)
            return group.explicit_subject_block if group.explicit_subject_block
            group = group.superclass
          end
        end
Register or log in to add new notes.