remove trailing white-spaces from test/unit/comment_test.rb.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6723 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-29 10:09:46 +00:00
parent 578d8cc63e
commit 0486472662
1 changed files with 6 additions and 6 deletions

View File

@ -5,12 +5,12 @@
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2 # as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version. # of the License, or (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
@ -24,18 +24,18 @@ class CommentTest < ActiveSupport::TestCase
@jsmith = User.find(2) @jsmith = User.find(2)
@news = News.find(1) @news = News.find(1)
end end
def test_create def test_create
comment = Comment.new(:commented => @news, :author => @jsmith, :comments => "my comment") comment = Comment.new(:commented => @news, :author => @jsmith, :comments => "my comment")
assert comment.save assert comment.save
@news.reload @news.reload
assert_equal 2, @news.comments_count assert_equal 2, @news.comments_count
end end
def test_create_should_send_notification def test_create_should_send_notification
Setting.notified_events << 'news_comment_added' Setting.notified_events << 'news_comment_added'
Watcher.create!(:watchable => @news, :user => @jsmith) Watcher.create!(:watchable => @news, :user => @jsmith)
assert_difference 'ActionMailer::Base.deliveries.size' do assert_difference 'ActionMailer::Base.deliveries.size' do
Comment.create!(:commented => @news, :author => @jsmith, :comments => "my comment") Comment.create!(:commented => @news, :author => @jsmith, :comments => "my comment")
end end
@ -46,7 +46,7 @@ class CommentTest < ActiveSupport::TestCase
assert !comment.save assert !comment.save
assert_equal 2, comment.errors.length assert_equal 2, comment.errors.length
end end
def test_destroy def test_destroy
comment = Comment.find(1) comment = Comment.find(1)
assert comment.destroy assert comment.destroy