remove trailing white-spaces from test/unit/board_test.rb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6720 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
cdabfbac52
commit
fe9d54316c
|
@ -6,7 +6,7 @@ class BoardTest < ActiveSupport::TestCase
|
|||
def setup
|
||||
@project = Project.find(1)
|
||||
end
|
||||
|
||||
|
||||
def test_create
|
||||
board = Board.new(:project => @project, :name => 'Test board', :description => 'Test board description')
|
||||
assert board.save
|
||||
|
@ -20,7 +20,7 @@ class BoardTest < ActiveSupport::TestCase
|
|||
# last position
|
||||
assert_equal @project.boards.size, board.position
|
||||
end
|
||||
|
||||
|
||||
def test_destroy
|
||||
board = Board.find(1)
|
||||
assert_difference 'Message.count', -6 do
|
||||
|
|
Loading…
Reference in New Issue