diff --git a/guides/source/testing.textile b/guides/source/testing.textile index c1c7b2f341c0c..60b0aa89b985f 100644 --- a/guides/source/testing.textile +++ b/guides/source/testing.textile @@ -524,7 +524,7 @@ You also have access to three instance variables in your functional tests: * +@request+ - The request * +@response+ - The response -h4. Testing Template and Layout Example +h4. Testing Templates and Layouts If you want to make sure that the response rendered the correct template and layout, you can use the +assert_template+ method: @@ -543,13 +543,11 @@ things clearer. On the other hand, you have to include the "layouts" directory n file in this standard layout directory. Hence, - assert_template :layout => "application" +assert_template :layout => "application" will not work. -Gotcha: Watch out if your view renders any partial - If your view renders any partial, when asserting for the layout, you have to assert for the partial at the same time. Otherwise, assertion will fail.