login_to_the_application_test.rb
600 Bytes
require "#{File.dirname(__FILE__)}/../test_helper"
class LoginToTheApplicationTest < ActionController::IntegrationTest
fixtures :users, :virtual_communities, :profiles
def test_anonymous_sees_login_box
get '/'
assert_tag :tag => 'div', :attributes => { :id => 'login_box' }
assert_no_tag :tag => 'div', :attributes => { :id => 'user_links' }
end
def test_logged_in_does_not_see_login_box
login('ze', 'test')
get '/'
assert_no_tag :tag => 'div', :attributes => { :id => 'login_box' }
assert_tag :tag => 'div', :attributes => { :id => 'user_links' }
end
end