aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfrancis <francis>2007-10-16 06:54:52 +0000
committerfrancis <francis>2007-10-16 06:54:52 +0000
commit161b6001e194b763e83567a0c7f128ce4467df7d (patch)
tree82312d04ca9fce79b42f633929266ab1692dfb0e
parent1fe7732cafe28488dcd908ae96709d8b4f5ef424 (diff)
Removed test skeletons for removed controllers
-rw-r--r--app/helpers/list_helper.rb2
-rw-r--r--app/helpers/new_helper.rb2
-rw-r--r--test/functional/list_controller_test.rb18
3 files changed, 0 insertions, 22 deletions
diff --git a/app/helpers/list_helper.rb b/app/helpers/list_helper.rb
deleted file mode 100644
index eaa1d0e15..000000000
--- a/app/helpers/list_helper.rb
+++ /dev/null
@@ -1,2 +0,0 @@
-module ListHelper
-end
diff --git a/app/helpers/new_helper.rb b/app/helpers/new_helper.rb
deleted file mode 100644
index 5e5040e71..000000000
--- a/app/helpers/new_helper.rb
+++ /dev/null
@@ -1,2 +0,0 @@
-module NewHelper
-end
diff --git a/test/functional/list_controller_test.rb b/test/functional/list_controller_test.rb
deleted file mode 100644
index d347f44cb..000000000
--- a/test/functional/list_controller_test.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require File.dirname(__FILE__) + '/../test_helper'
-require 'list_controller'
-
-# Re-raise errors caught by the controller.
-class ListController; def rescue_action(e) raise e end; end
-
-class ListControllerTest < Test::Unit::TestCase
- def setup
- @controller = ListController.new
- @request = ActionController::TestRequest.new
- @response = ActionController::TestResponse.new
- end
-
- # Replace this with your real tests.
- def test_truth
- assert true
- end
-end