-
-
Save brentvatne/2967528 to your computer and use it in GitHub Desktop.
Faster rspec tests with Paperclip
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# inspired by https://gist.github.com/406460 and | |
# http://pivotallabs.com/users/rolson/blog/articles/1249-stubbing-out-paperclip-imagemagick-in-tests | |
# plus some additional monkeypatching to prevent "too many files open" err's | |
# | |
# place this file in <app root>/spec/support | |
# | |
RSpec.configure do |config| | |
$paperclip_stub_size = "800x800" | |
end | |
module Paperclip | |
class Geometry | |
def self.from_file file | |
parse($paperclip_stub_size) | |
end | |
end | |
class Thumbnail | |
def make | |
src = fixture_file_upload('spec/fixtures/files/1x1.png') | |
dst = Tempfile.new([@basename, @format].compact.join(".")) | |
dst.binmode | |
FileUtils.cp(src.path, dst.path) | |
return dst | |
end | |
end | |
class Attachment | |
def post_process | |
end | |
end | |
module Storage | |
module Filesystem | |
def flush_writes | |
@queued_for_write.each{|style, file| file.close} | |
@queued_for_write = {} | |
end | |
def flush_deletes | |
@queue_for_delete = [] | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment