2010-12-12 23:24:34 +00:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2010-08-19 01:01:35 +00:00
|
|
|
|
|
|
|
class LayoutTest < ActionController::IntegrationTest
|
|
|
|
fixtures :all
|
|
|
|
|
|
|
|
test "browsing to a missing page should render the base layout" do
|
|
|
|
get "/users/100000000"
|
|
|
|
|
|
|
|
assert_response :not_found
|
|
|
|
|
|
|
|
# UsersController uses the admin layout by default
|
|
|
|
assert_select "#admin-menu", :count => 0
|
|
|
|
end
|
|
|
|
|
|
|
|
test "browsing to an unauthorized page should render the base layout" do
|
2010-08-19 01:28:33 +00:00
|
|
|
change_user_password('miscuser9', 'test')
|
2010-08-19 01:01:35 +00:00
|
|
|
|
|
|
|
log_user('miscuser9','test')
|
|
|
|
|
|
|
|
get "/admin"
|
|
|
|
assert_response :forbidden
|
|
|
|
assert_select "#admin-menu", :count => 0
|
|
|
|
end
|
|
|
|
end
|