summaryrefslogtreecommitdiff
path: root/test/functional/export_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/export_controller_test.rb')
-rw-r--r--test/functional/export_controller_test.rb18
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