spec/utils_spec.rb in cloudinary-1.0.75 vs spec/utils_spec.rb in cloudinary-1.0.76
- old
+ new
@@ -431,10 +431,11 @@
[
["a b", "a%20b"],
["a+b", "a%2Bb"],
["a%20b", "a%20b"],
["a-b", "a-b"],
- ["a??b", "a%3F%3Fb"]
+ ["a??b", "a%3F%3Fb"],
+ ["parentheses(interject)", "parentheses%28interject%29"]
].each do
|source, target|
Cloudinary::Utils.cloudinary_url(source).should == "http://res.cloudinary.com/test123/image/upload/#{target}"
end
end