aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-07-17 11:43:58 +0200
committerArun Agrawal <arunagw@gmail.com>2013-07-17 11:47:24 +0200
commitfc0faaa5905eab7f2a70b1d5b5aa06bd7b43d7fd (patch)
tree851f553a3423a9d89ae8a6e30dddbd13967f0092 /actionpack/test
parent66cba60103b042f5d233bfbeb413a495e960938c (diff)
downloadrails-fc0faaa5905eab7f2a70b1d5b5aa06bd7b43d7fd.tar.gz
rails-fc0faaa5905eab7f2a70b1d5b5aa06bd7b43d7fd.tar.bz2
rails-fc0faaa5905eab7f2a70b1d5b5aa06bd7b43d7fd.zip
Removed unused test file
This test file is not be running from a long time This test is already covered in controller/caching_test.rb
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/metal/caching_test.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/actionpack/test/metal/caching_test.rb b/actionpack/test/metal/caching_test.rb
deleted file mode 100644
index a2b6763754..0000000000
--- a/actionpack/test/metal/caching_test.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-require 'abstract_unit'
-
-CACHE_DIR = 'test_cache'
-# Don't change '/../temp/' cavalierly or you might hose something you don't want hosed
-FILE_STORE_PATH = File.join(File.dirname(__FILE__), '/../temp/', CACHE_DIR)
-
-class CachingController < ActionController::Metal
- abstract!
-
- include ActionController::Caching
-
- self.page_cache_directory = FILE_STORE_PATH
- self.cache_store = :file_store, FILE_STORE_PATH
-end
-
-class PageCachingTestController < CachingController
- caches_page :ok
-
- def ok
- self.response_body = "ok"
- end
-end
-
-class PageCachingTest < ActionController::TestCase
- tests PageCachingTestController
-
- def test_should_cache_get_with_ok_status
- get :ok
- assert_response :ok
- assert File.exist?("#{FILE_STORE_PATH}/page_caching_test/ok.html"), "get with ok status should have been cached"
- end
-end