diff options
-rw-r--r-- | app/helpers/list_helper.rb | 2 | ||||
-rw-r--r-- | app/helpers/new_helper.rb | 2 | ||||
-rw-r--r-- | test/functional/list_controller_test.rb | 18 |
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 |