diff options
author | Nicolas Braud-Santoni <nicoo@ffgraz.net> | 2016-08-07 16:39:42 +0200 |
---|---|---|
committer | Nicolas Braud-Santoni <nicoo@ffgraz.net> | 2016-08-07 16:39:42 +0200 |
commit | b6ca062670b342344df08b53fb216db619ef42bc (patch) | |
tree | 7680ac6b407239f6b7272c937e42f688b8de542c /test/functional/export_controller_test.rb |
Import legacy manman source
Copied from www.ffgraz.net
Diffstat (limited to 'test/functional/export_controller_test.rb')
-rw-r--r-- | test/functional/export_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/export_controller_test.rb b/test/functional/export_controller_test.rb new file mode 100644 index 0000000..897e329 --- /dev/null +++ b/test/functional/export_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'export_controller' + +# Re-raise errors caught by the controller. +class ExportController; def rescue_action(e) raise e end; end + +class ExportControllerTest < Test::Unit::TestCase + def setup + @controller = ExportController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end |