Commit ff332178 authored by Shinya Maeda's avatar Shinya Maeda

Add spec to check cahed file is removed

parent ec045f8a
...@@ -189,6 +189,18 @@ describe ObjectStorage do ...@@ -189,6 +189,18 @@ describe ObjectStorage do
it "calls a cache path" do it "calls a cache path" do
expect { |b| uploader.use_file(&b) }.to yield_with_args(%r[tmp/cache]) expect { |b| uploader.use_file(&b) }.to yield_with_args(%r[tmp/cache])
end end
it "cleans up the cached file" do
cached_path = ''
uploader.use_file do |path|
cached_path = path
expect(File.exist?(cached_path)).to be_truthy
end
expect(File.exist?(cached_path)).to be_falsey
end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment