features/steps/formatting_steps.rb in xcpretty-0.0.4 vs features/steps/formatting_steps.rb in xcpretty-0.0.5
- old
+ new
@@ -102,8 +102,14 @@
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(".")
+end
+
+
+
Then(/^I should not see the name of the test group$/) do
run_output.should_not include(SAMPLE_TEST_GROUP_NAME)
end