Sha256: 2ce49b6f8858da2254cd463a3ad868ec0b031c46be8eb0fa2d87827d414bc1db
Contents?: true
Size: 1.1 KB
Versions: 15
Compression:
Stored size: 1.1 KB
Contents
require 'spec_helper' require 'cucumber/formatter/progress' module Cucumber module Formatter describe Progress do before(:each) do Cucumber::Term::ANSIColor.coloring = false @out = StringIO.new progress = Cucumber::Formatter::Progress.new(double("step mother"), @out, {}) @visitor = Cucumber::Ast::TreeWalker.new(nil, [progress]) end describe "visiting a table cell value without a status" do it "should take the status from the last run step" do @visitor.visit_step_result('', '', nil, :failed, nil, 10, nil, nil) outline_table = double() outline_table.should_receive(:accept) do |visitor| visitor.visit_table_cell_value('value', nil) end @visitor.visit_outline_table(outline_table) @out.string.should == "FF" end end describe "visiting a table cell which is a table header" do it "should not output anything" do @visitor.visit_table_cell_value('value', :skipped_param) @out.string.should == "" end end end end end
Version data entries
15 entries across 15 versions & 2 rubygems