features/step_definitions/s3_steps.rb in paperclip-5.1.0 vs features/step_definitions/s3_steps.rb in paperclip-5.2.0
- old
+ new
@@ -1,7 +1,7 @@
When /^I attach the file "([^"]*)" to "([^"]*)" on S3$/ do |file_path, field|
definition = Paperclip::AttachmentRegistry.definitions_for(User)[field.downcase.to_sym]
- path = "https://paperclip.s3-us-west-2.amazonaws.com#{definition[:path]}"
+ path = "https://paperclip.s3.us-west-2.amazonaws.com#{definition[:path]}"
path.gsub!(':filename', File.basename(file_path))
path.gsub!(/:([^\/\.]+)/) do |match|
"([^\/\.]+)"
end
FakeWeb.register_uri(:put, Regexp.new(path), :body => "<xml></xml>")