scm: add test to strip git repository path at unit repository test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6827 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
9f7cb2d045
commit
d0ade0e194
|
@ -160,6 +160,15 @@ class RepositoryTest < ActiveSupport::TestCase
|
|||
assert_equal 'file:///dummy', repository.url
|
||||
end
|
||||
|
||||
def test_for_urls_strip_git
|
||||
repository = Repository::Git.create(
|
||||
:project => Project.find(4),
|
||||
:url => ' c:\dummy ')
|
||||
assert repository.save
|
||||
repository.reload
|
||||
assert_equal 'c:\dummy', repository.url
|
||||
end
|
||||
|
||||
def test_manual_user_mapping
|
||||
assert_no_difference "Changeset.count(:conditions => 'user_id <> 2')" do
|
||||
c = Changeset.create!(
|
||||
|
|
Loading…
Reference in New Issue