class RSpec::Core::Example::Procsy

def call(*args, &block)

Calls the proc and notes that the example has been executed.
def call(*args, &block)
  @executed = true
  @proc.call(*args, &block)
end