From b6ca062670b342344df08b53fb216db619ef42bc Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Sun, 7 Aug 2016 16:39:42 +0200 Subject: Import legacy manman source Copied from www.ffgraz.net --- test/functional/export_controller_test.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/functional/export_controller_test.rb (limited to 'test/functional/export_controller_test.rb') 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 -- cgit v1.2.1