Commit dfb15428 by Tim Kennedy Committed by Dave Gynn

Added a test for a bug in interpolations

parent 48cad66f
...@@ -250,4 +250,13 @@ describe Paperclip::Interpolations do ...@@ -250,4 +250,13 @@ describe Paperclip::Interpolations do
value = Paperclip::Interpolations.interpolate(":notreal/:id/:attachment", :attachment, :style) value = Paperclip::Interpolations.interpolate(":notreal/:id/:attachment", :attachment, :style)
assert_equal ":notreal/1234/attachments", value assert_equal ":notreal/1234/attachments", value
end end
it "handles question marks" do
Paperclip.interpolates :foo? do
"bar"
end
Paperclip::Interpolations.expects(:fool).never
value = Paperclip::Interpolations.interpolate(":fo/:foo?")
assert_equal ":fo/bar", value
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