Skip to content

Instantly share code, notes, and snippets.

@redsquirrel
Created January 16, 2009 21:32
Show Gist options
  • Save redsquirrel/48145 to your computer and use it in GitHub Desktop.
Save redsquirrel/48145 to your computer and use it in GitHub Desktop.
class DatabaseReport
def initialize(io, step_mother, options={})
end
def feature_executing(feature)
puts "It begins....#{feature.file}"
end
def header_executing(header)
puts "header_executing"
end
def scenario_executing(scenario)
puts "scenario_executing"
end
def scenario_executed(scenario)
puts "scenario_executed"
end
def step_passed(step, regexp, args)
puts "step_passed"
end
def step_failed(step, regexp, args)
puts "YOU TOTALLY FAILED!!!!!!!!!!!!!!"
end
def step_skipped(step, regexp, args)
end
def step_pending(step, regexp, args)
puts "step_pending"
end
def step_traced(step, regexp, args)
end
def output_failing_step(step)
end
def dump
end
def dump_count(count, what, state=nil)
end
def print_pending_messages
end
def print_snippets
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment