Skip to content

Instantly share code, notes, and snippets.

@dakatsuka
Created November 17, 2011 00:45
Show Gist options
  • Save dakatsuka/1372022 to your computer and use it in GitHub Desktop.
Save dakatsuka/1372022 to your computer and use it in GitHub Desktop.
Paperclipを使っているモデルをテストする時にファイルを保存しないようにする
RSpec.configure do |config|
config.mock_with :rr
config.before do
any_instance_of User do |u|
stub(u).save_attached_files { true }
stub(u).destroy_attached_files { true }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment