Sha256: e5cd35fd8dce855acda788a6a76ae1654e98be47f0251f6158ee64bc91352957
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
require './test/helper' class FileSystemTest < Test::Unit::TestCase context "Filesystem" do setup do rebuild_model :styles => { :thumbnail => "25x25#" } @dummy = Dummy.create! @dummy.avatar = File.open(File.join(File.dirname(__FILE__), "..", "fixtures", "5k.png")) end should "allow file assignment" do assert @dummy.save end should "store the original" do @dummy.save assert File.exists?(@dummy.avatar.path) end should "store the thumbnail" do @dummy.save assert File.exists?(@dummy.avatar.path(:thumbnail)) end should "clean up file objects" do File.stubs(:exist?).returns(true) Paperclip::Tempfile.any_instance.expects(:close).at_least_once() Paperclip::Tempfile.any_instance.expects(:unlink).at_least_once() @dummy.save! end context "with file that has space in file name" do setup do rebuild_model :styles => { :thumbnail => "25x25#" } @dummy = Dummy.create! @dummy.avatar = File.open(File.join(File.dirname(__FILE__), "..", "fixtures", "spaced file.png")) @dummy.save end should "store the file" do assert File.exists?(@dummy.avatar.path) end should "store the path unescaped" do assert_match /\/spaced file\.png/, @dummy.avatar.path end should "return an escaped version of URL" do assert_match /\/spaced%20file\.png/, @dummy.avatar.url end end end end
Version data entries
4 entries across 4 versions & 2 rubygems