Methods
T
Instance Public methods
test_exception_raised_when_layout_file_not_found()
# File actionview/test/actionpack/controller/layout_test.rb, line 235
def test_exception_raised_when_layout_file_not_found
  @controller = SetsNonExistentLayoutFile.new
  assert_raise(ActionView::MissingTemplate) { get :hello }
end