features/cli.feature in git-gc-cron-0.0.3 vs features/cli.feature in git-gc-cron-0.0.4

- old
+ new

@@ -6,17 +6,17 @@ Scenario: recursively search repos Given a checked out repo "repos1/abc" And a checked out repo "repos1/def/xyz" And a bare repo "repos2/ghi.git" And a bare repo "repos3/jkl.git" - When I run "git-gc-cron repos1 repos2" + When I run `git-gc-cron repos1 repos2` Then the repo "repos1/abc" should be packed And the repo "repos1/def/xyz" should be packed And the repo "repos2/ghi.git" should be packed And the repo "repos3/jkl.git" should not be packed Scenario: Verbose output Given a checked out repo "repos1/abc" And a checked out repo "repos1/def/xyz" - When I run "git-gc-cron -v repos1" + When I run `git-gc-cron -v repos1` Then the output should contain "repos1/abc" And the output should contain "repos1/def/xyz"