Assert_layout in Rails
19 Feb 2007 0:02 - (0) comments
There's no assert_layout in Rails, so if you want to make sure your action has the right layout you can do the following:
def assert_layout layout
assert_equal @response.layout, layout
end
19 Feb 2007 0:02 - (0) comments
There's no assert_layout in Rails, so if you want to make sure your action has the right layout you can do the following:
def assert_layout layout
assert_equal @response.layout, layout
end
Comments
No comments allowed.