diff options
author | Anton Khamets <colorfulfool@gmail.com> | 2017-08-11 20:18:12 +0300 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2017-08-11 13:18:12 -0400 |
commit | e25466b142c067ad44130d93fa864f5ffa9643bb (patch) | |
tree | acd4a00126e8b831123db68ab208c1cc05b4e1f7 /activestorage/test/controllers | |
parent | de80aa641290a03c023d00d2ffca368026335fe4 (diff) | |
download | rails-e25466b142c067ad44130d93fa864f5ffa9643bb.tar.gz rails-e25466b142c067ad44130d93fa864f5ffa9643bb.tar.bz2 rails-e25466b142c067ad44130d93fa864f5ffa9643bb.zip |
Enable browser caching for blobs and variants (#30196)
Diffstat (limited to 'activestorage/test/controllers')
-rw-r--r-- | activestorage/test/controllers/blobs_controller_test.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/activestorage/test/controllers/blobs_controller_test.rb b/activestorage/test/controllers/blobs_controller_test.rb new file mode 100644 index 0000000000..5ec353889c --- /dev/null +++ b/activestorage/test/controllers/blobs_controller_test.rb @@ -0,0 +1,15 @@ +require "test_helper" +require "database/setup" + +class ActiveStorage::BlobsControllerTest < ActionDispatch::IntegrationTest + setup do + @blob = create_image_blob filename: "racecar.jpg" + end + + test "showing blob utilizes browser caching" do + get rails_blob_url(@blob) + + assert_redirected_to(/racecar.jpg/) + assert_equal "max-age=300, private", @response.headers["Cache-Control"] + end +end |