Mercurial > hg > soundsoftware-site
diff .svn/pristine/70/70b84ab9e3add639c1ef335fb9d7383dcdf7f5f5.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/70/70b84ab9e3add639c1ef335fb9d7383dcdf7f5f5.svn-base Fri Feb 24 19:09:32 2012 +0000 @@ -0,0 +1,23 @@ +require File.expand_path('../../test_helper', __FILE__) + +class LdapAuthSourcesControllerTest < ActionController::TestCase + + 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