method
assert_generates
v7.0.0 -
Show latest stable
-
0 notes -
Class: ActionDispatch::Assertions::RoutingAssertions
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0 (0)
- 3.0.9 (-28)
- 3.1.0 (0)
- 3.2.1 (-1)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (-38)
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
assert_generates(expected_path, options, defaults = {}, extras = {}, message = nil)
public
Asserts that the provided options can be used to generate the provided path. This is the inverse of assert_recognizes. The extras parameter is used to tell the request the names and values of additional request parameters that would be in a query string. The message parameter allows you to specify a custom error message for assertion failures.
The defaults parameter is unused.
# Asserts that the default action is generated for a route with no action assert_generates "/items", controller: "items", action: "index" # Tests that the list action is properly routed assert_generates "/items/list", controller: "items", action: "list" # Tests the generation of a route with a parameter assert_generates "/items/list/1", { controller: "items", action: "list", id: "1" } # Asserts that the generated route gives us our custom route assert_generates "changesets/12", { controller: 'scm', action: 'show_diff', revision: "12" }