Class: Hydra::Formatter::PartialHtml

Inherits:
Cucumber::Formatter::Html
  • Object
show all
Defined in:
lib/hydra/cucumber/partial_html.rb

Instance Method Summary collapse

Instance Method Details

#after_features(features) ⇒ Object



11
12
13
# File 'lib/hydra/cucumber/partial_html.rb', line 11

def after_features(features)
  # we do not want the default implementation as we will write our own footer
end

#after_step(step) ⇒ Object



15
16
17
# File 'lib/hydra/cucumber/partial_html.rb', line 15

def after_step(step)
  # need an alterantive way of incrementing progress/outputing stats
end

#before_features(features) ⇒ Object



7
8
9
# File 'lib/hydra/cucumber/partial_html.rb', line 7

def before_features(features)
  # we do not want the default implementation as we will write our own header
end

#percent_doneObject



19
20
21
# File 'lib/hydra/cucumber/partial_html.rb', line 19

def percent_done
  0
end