kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
14 years ago
|
#-- copyright
|
||
12 years ago
|
# OpenProject is a project management system.
|
||
11 years ago
|
# Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
|
||
14 years ago
|
#
|
||
14 years ago
|
# This program is free software; you can redistribute it and/or
|
||
12 years ago
|
# modify it under the terms of the GNU General Public License version 3.
|
||
14 years ago
|
#
|
||
11 years ago
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
||
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
||
|
#
|
||
|
# 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.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#
|
||
14 years ago
|
# See doc/COPYRIGHT.rdoc for more details.
|
||
|
#++
|
||
|
|
||
11 years ago
|
require File.expand_path('../../spec_helper', __FILE__)
|
||
15 years ago
|
|
||
11 years ago
|
describe LdapAuthSourcesController do
|
||
|
let(:current_user) { FactoryGirl.create(:admin) }
|
||
15 years ago
|
|
||
11 years ago
|
before do
|
||
|
User.stub(:current).and_return current_user
|
||
15 years ago
|
end
|
||
|
|
||
11 years ago
|
describe "new" do
|
||
|
before do
|
||
15 years ago
|
get :new
|
||
|
end
|
||
|
|
||
11 years ago
|
it { expect(assigns(:auth_source)).not_to be_nil }
|
||
|
it { should respond_with :success }
|
||
|
it { should render_template :new }
|
||
15 years ago
|
|
||
11 years ago
|
it "initializes a new AuthSource" do
|
||
|
expect(assigns(:auth_source).class).to eq LdapAuthSource
|
||
|
expect(assigns(:auth_source)).to be_new_record
|
||
15 years ago
|
end
|
||
|
end
|
||
|
end
|