##// END OF EJS Templates
scm: bazaar: change project id of unit app test from 1 to 3....
scm: bazaar: change project id of unit app test from 1 to 3. Project id 1 has Subversion fixtures. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4977 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4395:17f86d964fe0
r4857:089c23f2288c
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