]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/diary_entry_test.rb
Cleanup trailing whitespace
[rails.git] / test / models / diary_entry_test.rb
index e8667bc74d5e7037e9e9bde5c73fde314ddd0cbf..12fd6951218bae3e4d2276f61f15207fcb5a6595 100644 (file)
@@ -3,11 +3,11 @@ require 'test_helper'
 class DiaryEntryTest < ActiveSupport::TestCase
   api_fixtures
   fixtures :diary_entries, :diary_comments, :languages
-  
+
   def test_diary_entry_count
     assert_equal 5, DiaryEntry.count
   end
-  
+
   def test_diary_entry_validations
     diary_entry_valid({})
     diary_entry_valid({:title => ''}, false)
@@ -30,12 +30,12 @@ class DiaryEntryTest < ActiveSupport::TestCase
       DiaryEntry.visible.find(diary_entries(:deleted_entry).id)
     end
   end
-  
+
   def test_diary_entry_comments
     assert_equal 0, diary_entries(:normal_user_entry_1).comments.count
     assert_equal 4, diary_entries(:normal_user_geo_entry).comments.count
   end
-  
+
   def test_diary_entry_visible_comments
     assert_equal 0, diary_entries(:normal_user_entry_1).visible_comments.count
     assert_equal 1, diary_entries(:normal_user_geo_entry).visible_comments.count
@@ -47,5 +47,5 @@ private
     entry = DiaryEntry.new(diary_entries(:normal_user_entry_1).attributes)
     entry.assign_attributes(attrs)
     assert_equal result, entry.valid?, "Expected #{attrs.inspect} to be #{result}"
-  end  
+  end
 end