Sha256: 8bca3165f1392b295007e551d67999632a033cfee9443d5f264f097424b3f677
Contents?: true
Size: 742 Bytes
Versions: 3
Compression:
Stored size: 742 Bytes
Contents
require 'test_helper' class CacheFileStoreTest < ActiveSupport::TestCase def setup super @cachepath = Dir.mktmpdir @env.cache = Condenser::Cache::FileStore.new(@cachepath) end def teardown super FileUtils.remove_entry(@cachepath, true) end test 'reading from a populated cache store' do file 'test.txt.erb', "1<%= 1 + 1 %>3\n" assert_file 'test.txt', 'text/plain', <<~CSS 123 CSS oldenv = @env begin @env = Condenser.new(@path, base: @path) @env.cache = Condenser::Cache::FileStore.new(@cachepath) Condenser::Erubi.stubs(:call).never assert_file 'test.txt', 'text/plain', <<~CSS 123 CSS ensure @env = oldenv end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
condenser-1.4 | test/cache_stores/file_store_test.rb |
condenser-1.3 | test/cache_stores/file_store_test.rb |
condenser-1.2 | test/cache_stores/file_store_test.rb |