2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2010-05-23 07:16:31 +04:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class LdapAuthSourcesControllerTest < ActionController::TestCase
|
|
|
|
fixtures :all
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@request.session[:user_id] = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
context "get :new" do
|
|
|
|
setup do
|
|
|
|
get :new
|
|
|
|
end
|
|
|
|
|
|
|
|
should_assign_to :auth_source
|
|
|
|
should_respond_with :success
|
|
|
|
should_render_template :new
|
|
|
|
|
|
|
|
should "initilize a new AuthSource" do
|
|
|
|
assert_equal AuthSourceLdap, assigns(:auth_source).class
|
|
|
|
assert assigns(:auth_source).new_record?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|