source: de.wigbels.ruby/contact/test/functional/login_controller_test.rb@ 8f3c501

Last change on this file since 8f3c501 was 7b7d827, checked in by njw <njw@…>, 11 years ago

opened projects: hothotwrite and contact

  • Property mode set to 100644
File size: 478 bytes
Line 
1require File.dirname(__FILE__) + '/../test_helper'
2require 'login_controller'
3
4# Re-raise errors caught by the controller.
5class LoginController; def rescue_action(e) raise e end; end
6
7class LoginControllerTest < Test::Unit::TestCase
8 def setup
9 @controller = LoginController.new
10 @request = ActionController::TestRequest.new
11 @response = ActionController::TestResponse.new
12 end
13
14 # Replace this with your real tests.
15 def test_truth
16 assert true
17 end
18end
Note: See TracBrowser for help on using the repository browser.