summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-22 16:52:36 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-10-22 16:52:36 +0000
commitb30b6717a271f06290c07479b7e26446f039e4df (patch)
treed82ff9611faeef92d286e756d2448236ce094093 /test
parentcedca57620e36fc8deb22653e91ef3e63fe63cf2 (diff)
downloadredmine-b30b6717a271f06290c07479b7e26446f039e4df.tar.gz
redmine-b30b6717a271f06290c07479b7e26446f039e4df.zip
Commit message parser:
* Fixed: Error when parsing a commit message with duplicate issue identifiers * Strip referencing and fixing keywords git-svn-id: http://redmine.rubyforge.org/svn/trunk@861 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/changesets.yml2
-rw-r--r--test/unit/repository_test.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/test/fixtures/changesets.yml b/test/fixtures/changesets.yml
index 1fb8ba64b..3b47eecd8 100644
--- a/test/fixtures/changesets.yml
+++ b/test/fixtures/changesets.yml
@@ -12,7 +12,7 @@ changesets_002:
committed_on: 2007-04-12 15:14:44 +02:00
revision: 2
id: 101
- comments: 'This commit fixes #1, #2 and references #3'
+ comments: 'This commit fixes #1, #2 and references #1 & #3'
repository_id: 10
committer: dlopper
changesets_003:
diff --git a/test/unit/repository_test.rb b/test/unit/repository_test.rb
index ea2122aa7..b802403f5 100644
--- a/test/unit/repository_test.rb
+++ b/test/unit/repository_test.rb
@@ -40,6 +40,8 @@ class RepositoryTest < Test::Unit::TestCase
# choosing a status to apply to fix issues
Setting.commit_fix_status_id = IssueStatus.find(:first, :conditions => ["is_closed = ?", true]).id
Setting.commit_fix_done_ratio = "90"
+ Setting.commit_ref_keywords = 'refs , references, IssueID'
+ Setting.commit_fix_keywords = 'fixes , closes'
# make sure issue 1 is not already closed
assert !Issue.find(1).status.is_closed?