method
explicit_subject
1.3.1 -
Show latest stable
- Class:
Spec::Example::Subject::ExampleGroupMethods
explicit_subject()private
No documentation available.
# 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