features/steps/formatting_steps.rb in xcpretty-0.1.2 vs features/steps/formatting_steps.rb in xcpretty-0.1.3

- old
+ new

@@ -107,14 +107,10 @@ When(/^I pipe to xcpretty with a custom formatter$/) do formatter_path = File.expand_path('../../../spec/fixtures/custom_formatter.rb', __FILE__) run_xcpretty("-f #{formatter_path}") end -When(/^I pipe to xcpretty$/) do - run_xcpretty("") -end - Then(/^I should see a custom compilation message$/) do run_output.should start_with("😎 Compilation party time") end Then(/^I should see a successful compilation message$/) do @@ -209,10 +205,10 @@ Then(/^I should see a green passing test mark$/) do run_output.should include(green("✓")) end Then(/^I should see a non-utf prefixed output$/) do - run_output.should start_with(green(".")) + run_output.should start_with(" " + green(".")) end Then(/^I should not see the name of the test group$/) do run_output.should_not include("RACTupleSpec") end