spec/lucid/progress_spec.rb in lucid-0.3.3 vs spec/lucid/progress_spec.rb in lucid-0.4.0
- old
+ new
@@ -2,16 +2,16 @@
require 'lucid/formatter/progress'
module Lucid
module Formatter
describe Progress do
-
+
before(:each) do
Lucid::Term::ANSIColor.coloring = false
@out = StringIO.new
progress = Lucid::Formatter::Progress.new(double('Runtime'), @out, {})
- @visitor = Lucid::AST::TDLWalker.new(nil, [progress])
+ @visitor = Lucid::AST::Walker.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
step_result = AST::StepResult.new('', '', nil, :failed, nil, 10, nil, nil)
@@ -29,6 +29,6 @@
@out.string.should == ''
end
end
end
end
-end
\ No newline at end of file
+end