Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Mar 6, 2015
1 parent 9651051 commit 443e577
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@ class AnsiConsoleUrlMappingsRendererSpec extends Specification{
then:"The output is correct"
sw.toString() == '''Controller: author
| GET | /books/${bookId}/authors/create | Action: create |
| GET | /books/${bookId}/authors/${id}/edit | Action: edit |
| POST | /books/${bookId}/authors | Action: save |
| GET | /books/${bookId}/authors | Action: index |
| GET | /books/${bookId}/authors/${id}/edit | Action: edit |
| DELETE | /books/${bookId}/authors/${id} | Action: delete |
| PATCH | /books/${bookId}/authors/${id} | Action: patch |
| PUT | /books/${bookId}/authors/${id} | Action: update |
| GET | /books/${bookId}/authors/${id} | Action: show |
Controller: book
| GET | /books/create | Action: create |
| GET | /books/${id}/edit | Action: edit |
| POST | /books | Action: save |
| GET | /books | Action: index |
| GET | /books/${id}/edit | Action: edit |
| DELETE | /books/${id} | Action: delete |
| PATCH | /books/${id} | Action: patch |
| PUT | /books/${id} | Action: update |
Expand Down Expand Up @@ -89,9 +89,9 @@ Controller: errors
Controller: foo
| GET | /foo/create | Action: create |
| GET | /foo/${id}/edit | Action: edit |
| POST | /foo | Action: save |
| GET | /foo | Action: index |
| GET | /foo/${id}/edit | Action: edit |
| DELETE | /foo/${id} | Action: delete |
| PATCH | /foo/${id} | Action: patch |
| PUT | /foo/${id} | Action: update |
Expand Down

0 comments on commit 443e577

Please sign in to comment.