aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/caching_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/caching_test.rb')
-rw-r--r--activesupport/test/caching_test.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
new file mode 100644
index 0000000000..592eede63e
--- /dev/null
+++ b/activesupport/test/caching_test.rb
@@ -0,0 +1,27 @@
+require File.dirname(__FILE__) + '/abstract_unit'
+
+class CacheStoreSettingTest < Test::Unit::TestCase
+ def test_file_fragment_cache_store
+ store = ActiveSupport::Cache.lookup_store :file_store, "/path/to/cache/directory"
+ assert_kind_of(ActiveSupport::Cache::FileStore, store)
+ assert_equal "/path/to/cache/directory", store.cache_path
+ end
+
+ def test_drb_fragment_cache_store
+ store = ActiveSupport::Cache.lookup_store :drb_store, "druby://localhost:9192"
+ assert_kind_of(ActiveSupport::Cache::DRbStore, store)
+ assert_equal "druby://localhost:9192", store.address
+ end
+
+ def test_mem_cache_fragment_cache_store
+ store = ActiveSupport::Cache.lookup_store :mem_cache_store, "localhost"
+ assert_kind_of(ActiveSupport::Cache::MemCacheStore, store)
+ assert_equal %w(localhost), store.addresses
+ end
+
+ def test_object_assigned_fragment_cache_store
+ store = ActiveSupport::Cache.lookup_store ActiveSupport::Cache::FileStore.new("/path/to/cache/directory")
+ assert_kind_of(ActiveSupport::Cache::FileStore, store)
+ assert_equal "/path/to/cache/directory", store.cache_path
+ end
+end