module RSpec::Core::Subject::ExampleMethods
def subject
- See: #should -
See: ExampleGroupMethods#subject -
Other tags:
- Note: - `subject` was contributed by Joe Ferris to support the one-liner
def subject if defined?(@original_subject) @original_subject else @original_subject = instance_eval(&self.class.subject) end end