]> git.openstreetmap.org Git - rails.git/blob - test/functional/diary_entry_controller_test.rb
Adding some diary fixtures and test stubs
[rails.git] / test / functional / diary_entry_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class DiaryEntryControllerTest < ActionController::TestCase
4   def basic_authorization(user, pass)
5     @request.env["HTTP_AUTHORIZATION"] = "Basic %s" % Base64.encode64("#{user}:#{pass}")
6   end
7
8   def content(c)
9     @request.env["RAW_POST_DATA"] = c.to_s
10   end
11   
12   def test_showing_create_diary_entry
13     
14   end
15   
16   def test_editing_diary_entry
17     
18   end
19   
20   def test_editing_creating_diary_comment
21     
22   end
23   
24   def test_listing_diary_entries
25     
26   end
27   
28   def test_rss
29     
30   end
31   
32   def test_viewing_diary_entry
33     
34   end
35 end