Changeset 842
- Timestamp:
- 05/12/08 15:28:34
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tracks/app/views/integrations/rest_api.html.erb
r837 r842 197 197 <pre> 198 198 <code> 199 $ SITE="http://username:p4ssw0rd@<%= @request.host_with_port %>" irb \199 $ SITE="http://username:p4ssw0rd@<%= request.host_with_port %>" irb \ 200 200 -r tracks_api_wrapper.rb 201 201 trunk/tracks/test/functional/integrations_controller_test.rb
r619 r842 6 6 7 7 class IntegrationsControllerTest < Test::Unit::TestCase 8 fixtures :users, :preferences, :projects, :contexts, :todos, :tags, :taggings 9 8 10 def setup 9 11 @controller = IntegrationsController.new … … 16 18 assert true 17 19 end 20 21 def test_page_load 22 login_as(:admin_user) 23 get :rest_api 24 assert_response :success 25 end 26 18 27 end
