radar / guides

Guides for Ruby and Elixir and whatever else I feel like
1.52k stars 164 forks source link

Use backtick instead of double quotes #36

Closed gmodarelli closed 1 year ago

gmodarelli commented 10 years ago

Using " is now deprecated in aruba. This is the warning I get when runnning cucumber

The /^I run "(.*)"$/ step definition is deprecated. Please use the backticks version

Aruba version is 0.5.3

kunal-supe commented 10 years ago

The test passed with something like this:

Scenario: Broccoli is gross When(I run) do 'foodie portray broccoli' end

Then(the output should contain) do
 'Gross!''
 end