Fixes a test failure with svn < 1.5 (#2455).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2249 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2009-01-07 20:22:06 +00:00
parent a64928fa6b
commit 15996c348d
1 changed files with 9 additions and 7 deletions

View File

@ -78,7 +78,8 @@ class RepositoriesSubversionControllerTest < Test::Unit::TestCase
get :changes, :id => 1, :path => ['subversion_test', 'folder', 'helloworld.rb' ]
assert_response :success
assert_template 'changes'
# svn properties
# svn properties displayed with svn >= 1.5 only
if Redmine::Scm::Adapters::SubversionAdapter.client_version_above?([1, 5, 0])
assert_not_nil assigns(:properties)
assert_equal 'native', assigns(:properties)['svn:eol-style']
assert_tag :ul,
@ -86,6 +87,7 @@ class RepositoriesSubversionControllerTest < Test::Unit::TestCase
:child => { :tag => 'b', :content => 'svn:eol-style' },
:child => { :tag => 'span', :content => 'native' } }
end
end
def test_entry
get :entry, :id => 1, :path => ['subversion_test', 'helloworld.c']