##// END OF EJS Templates
tagged version 1.1.0...
tagged version 1.1.0 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/tags/1.1.0@4672 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4395:17f86d964fe0
r4552:17517575ec2b 1.1.0
Show More
layout_test.rb
24 lines | 626 B | text/x-ruby | RubyLexer
require File.expand_path('../../test_helper', __FILE__)
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
change_user_password('miscuser9', 'test')
log_user('miscuser9','test')
get "/admin"
assert_response :forbidden
assert_select "#admin-menu", :count => 0
end
end