Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
Unescaping isn't necessary when we're not going through Cucumber.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe Berke-Williams committed Oct 21, 2011
1 parent c05b398 commit c34d796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/step_definitions/git_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

When /^I set up a git repo$/ do
["git init", "touch .gitkeep", "git add .", "git commit -am First"].each do |git_command|
run_simple(unescape(git_command))
run_simple(git_command)
end
end

When /^I commit everything in the current repo$/ do
['git add .', 'git commit -am MY_MESSAGE'].each do |git_command|
run_simple(unescape(git_command))
run_simple(git_command)
end
end

Expand Down

0 comments on commit c34d796

Please sign in to comment.