diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-01 19:43:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-01 19:43:59 +0000 |
commit | 4ff8386e3dfee800591e7f856a26ccc700149b02 (patch) | |
tree | 75cd4a45ab9e0298299c821029d6066c29bfbc2b /test/integration/admin_test.rb | |
parent | cb6c8bee473332dfacea8d53745eb75407877a06 (diff) | |
download | redmine-4ff8386e3dfee800591e7f856a26ccc700149b02.tar.gz redmine-4ff8386e3dfee800591e7f856a26ccc700149b02.zip |
Initial commit for svn repository management and access control:
* Identifier attribute added on Project model. Used as the unix group name for the project
* Web services (disabled by default) and scripts for repository management on a remote svn host
git-svn-id: http://redmine.rubyforge.org/svn/trunk@396 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/admin_test.rb')
-rw-r--r-- | test/integration/admin_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/admin_test.rb b/test/integration/admin_test.rb index 0241ae8da..c51dc1bf1 100644 --- a/test/integration/admin_test.rb +++ b/test/integration/admin_test.rb @@ -45,7 +45,7 @@ class AdminTest < ActionController::IntegrationTest get "projects/add" assert_response :success assert_template "projects/add" - post "projects/add", :project => { :name => "blog", :description => "weblog", :is_public => 1} + post "projects/add", :project => { :name => "blog", :description => "weblog", :identifier => "blog", :is_public => 1} assert_redirected_to "admin/projects" assert_equal 'Successful creation.', flash[:notice] |