Class: RSpec::Core::Example

Inherits:
Object show all
Defined in:
lib/rspec/core/example.rb

Defined Under Namespace

Classes: Procsy

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(example_group_class, desc, options, example_block = nil) ⇒ Example

Returns a new instance of Example.



15
16
17
18
19
20
# File 'lib/rspec/core/example.rb', line 15

def initialize(example_group_class, desc, options, example_block=nil)
  @example_group_class, @options, @example_block = example_group_class, options, example_block
  @metadata  = @example_group_class..for_example(desc, options)
  @exception = nil
  @pending_declared_in_example = false
end

Instance Attribute Details

#example_group_instanceObject (readonly)

Returns the value of attribute example_group_instance.



5
6
7
# File 'lib/rspec/core/example.rb', line 5

def example_group_instance
  @example_group_instance
end

#metadataObject (readonly)

Returns the value of attribute metadata.



5
6
7
# File 'lib/rspec/core/example.rb', line 5

def 
  @metadata
end

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/rspec/core/example.rb', line 5

def options
  @options
end

Class Method Details

.delegate_to_metadata(*keys) ⇒ Object



7
8
9
10
11
# File 'lib/rspec/core/example.rb', line 7

def self.(*keys)
  keys.each do |key|
    define_method(key) {@metadata[key]}
  end
end

Instance Method Details

#apply?(predicate, filters) ⇒ Boolean

Returns:

  • (Boolean)


30
31
32
33
# File 'lib/rspec/core/example.rb', line 30

def apply?(predicate, filters)
  @metadata.apply?(predicate, filters) ||
  @example_group_class.apply?(predicate, filters)
end

#around_hooksObject



26
27
28
# File 'lib/rspec/core/example.rb', line 26

def around_hooks
  @around_hooks ||= example_group.around_hooks_for(self)
end

#example_groupObject



22
23
24
# File 'lib/rspec/core/example.rb', line 22

def example_group
  @example_group_class
end

#fail_fast(reporter, exception) ⇒ Object



72
73
74
75
76
# File 'lib/rspec/core/example.rb', line 72

def fail_fast(reporter, exception)
  start(reporter)
  set_exception(exception)
  finish(reporter)
end

#run(example_group_instance, reporter) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/rspec/core/example.rb', line 37

def run(example_group_instance, reporter)
  @example_group_instance = example_group_instance
  @example_group_instance.example = self

  start(reporter)

  begin
    unless pending
      with_pending_capture do
        with_around_hooks do
          begin
            run_before_each
            @example_group_instance.instance_eval(&@example_block)
          rescue Exception => e
            set_exception(e)
          ensure
            run_after_each
          end
        end
      end
    end
  rescue Exception => e
    set_exception(e)
  ensure
    @example_group_instance.example = nil
    assign_auto_description
  end

  finish(reporter)
end

#set_exception(exception) ⇒ Object



68
69
70
# File 'lib/rspec/core/example.rb', line 68

def set_exception(exception)
  @exception ||= exception
end