summaryrefslogtreecommitdiffstats
path: root/test/unit/changeset_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/changeset_test.rb')
-rw-r--r--test/unit/changeset_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/unit/changeset_test.rb b/test/unit/changeset_test.rb
index d1ac607b4..9eb46594c 100644
--- a/test/unit/changeset_test.rb
+++ b/test/unit/changeset_test.rb
@@ -343,6 +343,16 @@ class ChangesetTest < ActiveSupport::TestCase
assert_equal 'commit:0123456789', c.text_tag
end
+ def test_text_tag_hash_with_repository_identifier
+ r = Repository::Subversion.new(
+ :project_id => 1,
+ :url => 'svn://localhost/test',
+ :identifier => 'documents')
+ c = Changeset.new(:revision => '7234cb27', :scmid => '7234cb27', :repository => r)
+ assert_equal 'commit:documents|7234cb27', c.text_tag
+ assert_equal 'ecookbook:commit:documents|7234cb27', c.text_tag(Project.find(2))
+ end
+
def test_previous
changeset = Changeset.find_by_revision('3')
assert_equal Changeset.find_by_revision('2'), changeset.previous