scm: add test of committer nil at unit changeset test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5471 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
5f8c4e0703
commit
dab753ba28
|
@ -326,13 +326,15 @@ class ChangesetTest < ActiveSupport::TestCase
|
|||
:project => proj, :url => '/tmp/test/bazaar',
|
||||
:log_encoding => 'ISO-8859-1' )
|
||||
assert r
|
||||
c = Changeset.new(:repository => r,
|
||||
c = Changeset.new(:repository => r,
|
||||
:committed_on => Time.now,
|
||||
:revision => '123',
|
||||
:scmid => '12345',
|
||||
:comments => nil)
|
||||
:revision => '123',
|
||||
:scmid => '12345',
|
||||
:comments => nil,
|
||||
:committer => nil)
|
||||
assert( c.save )
|
||||
assert_equal "", c.comments
|
||||
assert_equal nil, c.committer
|
||||
if c.comments.respond_to?(:force_encoding)
|
||||
assert_equal "UTF-8", c.comments.encoding.to_s
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue