summaryrefslogtreecommitdiffstats
path: root/test/unit/project_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-01-27 17:34:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-01-27 17:34:58 +0000
commit9d372ce6f5b1b6a5861e9f3c212ea805af9d2d37 (patch)
tree560a0ccea739195056c6722a263dcf32983003c1 /test/unit/project_test.rb
parentffbd3c0522a0b5259976586999fd3a9ff963eb6d (diff)
downloadredmine-9d372ce6f5b1b6a5861e9f3c212ea805af9d2d37.tar.gz
redmine-9d372ce6f5b1b6a5861e9f3c212ea805af9d2d37.zip
Allow underscores in project identifiers (#1363).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8708 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/project_test.rb')
-rw-r--r--test/unit/project_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/project_test.rb b/test/unit/project_test.rb
index b3fd3de24..2901b6efa 100644
--- a/test/unit/project_test.rb
+++ b/test/unit/project_test.rb
@@ -119,6 +119,7 @@ class ProjectTest < ActiveSupport::TestCase
to_test = {"abc" => true,
"ab12" => true,
"ab-12" => true,
+ "ab_12" => true,
"12" => false,
"new" => false}