search for: tasklist_step

Displaying 1 result from an estimated 1 matches for "tasklist_step".

Did you mean: tasklist_steps
2010 Dec 16
1
Ambiguous match error for Cucumber
...t/ My tasklist.feature file is like as follows " Feature: Tasks In order to keep track of tasks People should be able to Create a list of tasks Scenario: List Tasks Given that I have created a task "task 1" When I go to the tasks page Then I should see "task 1" " My tasklist_steps.rb file is as follows:- " Given /^that I have created a task "(.*)"$/ do |desc| Task.create!(:description => desc) end When /^I go to the tasks page$/ do visit "/tasks" end " Whenever I am doing "rake cucumber:all" I am getting following error:- &qu...