Sha256: 0c0d9d550483a5401feed5a20da3915de518ba421a688b1ed10fd40ded746297
Contents?: true
Size: 553 Bytes
Versions: 5
Compression:
Stored size: 553 Bytes
Contents
require 'cucumber/formatter/html' module Hydra module Formatter class PartialHtml < Cucumber::Formatter::Html def before_features(features) # we do not want the default implementation as we will write our own header end def after_features(features) # we do not want the default implementation as we will write our own footer end def after_step(step) # need an alterantive way of incrementing progress/outputing stats end def percent_done 0 end end end end
Version data entries
5 entries across 5 versions & 4 rubygems