features/step_definitions/table_steps.rb in briar-0.0.9 vs features/step_definitions/table_steps.rb in briar-0.1.0

- old
+ new

@@ -89,10 +89,11 @@ Then /^I should see that the "([^"]*)" row has text "([^"]*)" in the "([^"]*)" label$/ do |row_id, text, label_id| should_see_row_with_label_with_text row_id, label_id, text end Then /^I should see that the text I just entered is in the "([^"]*)" row "([^"]*)" label$/ do |row_id, label_id| + #noinspection RubyResolve should_see_row_with_label_with_text row_id, label_id, @text_entered_by_keyboard end Then /^I move the "([^"]*)" row (up|down) (\d+) times? using the reorder edit control$/ do |row_id, dir, n| if device.ios7? @@ -157,10 +158,12 @@ Then /^I should see that the "([^"]*)" row has image "([^"]*)"$/ do |row_id, image_id| should_see_row_with_image row_id, image_id end - Then(/^I should see that the "([^"]*)" row has no text in the "([^"]*)" label$/) do |row_id, label_id| - should_see_row_with_label_that_has_no_text + should_see_row_with_label_that_has_no_text row_id, label_id end + + +