]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/user_diaries_test.rb
Merged 16488:16743 from trunk.
[rails.git] / test / integration / user_diaries_test.rb
index 2e7a01030ef2b1889994fcf8c788c7771d96e593..8fcc694e9196150d2eeac8cdc07cb84c030d6309 100644 (file)
@@ -3,6 +3,8 @@ require File.dirname(__FILE__) + '/../test_helper'
 class UserDiariesTest < ActionController::IntegrationTest
   fixtures :users, :diary_entries
 
+  # Test the creation of a diary entry, making sure that you are redirected to 
+  # login page when not logged in
   def test_showing_create_diary_entry
     get_via_redirect '/user/test/diary/new'
     # We should now be at the login page
@@ -37,7 +39,7 @@ class UserDiariesTest < ActionController::IntegrationTest
     assert_select "html:root" do
       assert_select "body" do
         assert_select "div#content" do
-          assert_select "h1", "New diary entry" 
+          assert_select "h1", "New Diary Entry" 
           assert_select "form[action='/user/#{users(:normal_user).display_name}/diary/new']" do
             assert_select "input[id=diary_entry_title]"
           end