scm: filesystem: add unit adapter test of default path_encoding is UTF-8 (#2274).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5865 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-05-21 02:18:07 +00:00
parent cbd1715109
commit 2c817160ab
1 changed files with 15 additions and 0 deletions

View File

@ -31,6 +31,21 @@ class FilesystemAdapterTest < ActiveSupport::TestCase
# Revision number is ignored
assert_equal "TEST CAT\n", @adapter.cat("/test", 1)
end
def test_path_encoding_default_utf8
adpt1 = Redmine::Scm::Adapters::FilesystemAdapter.new(
REPOSITORY_PATH
)
assert_equal "UTF-8", adpt1.path_encoding
adpt2 = Redmine::Scm::Adapters::FilesystemAdapter.new(
REPOSITORY_PATH,
nil,
nil,
nil,
""
)
assert_equal "UTF-8", adpt2.path_encoding
end
else
puts "Filesystem test repository NOT FOUND. Skipping unit tests !!! See doc/RUNNING_TESTS."
def test_fake; assert true end