Commit af685add by Jake Faris

Remove old Tempfile tests from Thumbnail spec

parent ce919726
require 'spec_helper'
describe Paperclip::Thumbnail do
context "A Paperclip Tempfile" do
before do
@tempfile = Paperclip::Tempfile.new(["file", ".jpg"])
end
after { @tempfile.close }
it "has its path contain a real extension" do
assert_equal ".jpg", File.extname(@tempfile.path)
end
it "is a real Tempfile" do
assert @tempfile.is_a?(::Tempfile)
end
end
context "Another Paperclip Tempfile" do
before do
@tempfile = Paperclip::Tempfile.new("file")
end
after { @tempfile.close }
it "does not have an extension if not given one" do
assert_equal "", File.extname(@tempfile.path)
end
it "is a real Tempfile" do
assert @tempfile.is_a?(::Tempfile)
end
end
context "An image" do
before do
@file = File.new(fixture_file("5k.png"), 'rb')
......
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