0
votes
1answer
62 views

passing image with post request in rspec (paperclip)

Failure/Error: post :create, Devise.token_authentication_key => @foo.authentication_token, receipt_image: "foo.png" Paperclip::AdapterRegistry::NoHandlerError: No handler found for "foo.png" how ...
2
votes
1answer
91 views

How can I use Rspec to test that a model using Paperclip is validating the size of an uploaded file?

The model: class Attachment < ActiveRecord::Base belongs_to :narrative attr_accessible :description, :user_id, :narrative_id has_attached_file :file validates_presence_of :user_id ...
0
votes
1answer
98 views

Paperclip using rspec

I have a Rails 3.2 application in which I use paperclip to upload and store file attachments. This works great in itself, but I want to test it using rspec. Now, the documentation provides some ...
0
votes
1answer
166 views

How to use WebMock to mock Paperclip call in a Sinatra app?

This code works fine without WebMock. Raising an exception: Paperclip::AdapterRegistry::NoHandlerError: No handler found for #<URI::HTTP:0x007ff3852cefb8 ...
0
votes
0answers
224 views

test a file upload using selenium with rspec using capybara - rails

I write test case for simple file upload and it's successfully run. but when i try in selenium then file upload test case not working. please help me - using selenium how to write test case for file ...
-2
votes
2answers
365 views

File Upload Using Paperclip With Rspec Testing (ruby on rails) [duplicate]

Possible Duplicate: test a file upload using rspec - rails I don't know how to write test cases for file uploads. can you please help me I have form with user_photo, name, email. i write ...
1
vote
1answer
199 views

Rspec, Paperclip, Fabrication, valid object without saving to filesystem

I have a rails 3.2 app with paperclip 3.2 and I have a model that has a required paperclip attachment(thumb). How can I create valid objects without having the file saved to the filesystem or S3. ...
0
votes
1answer
172 views

test failure when using VCR with paperclip

I have a test that works, and passes, the first time but fails the second time the spec suite is run: VCR.use_cassette("master_image_create_2", :match_requests_on => [:method, :uri]) do mi ...
2
votes
1answer
297 views

File Upload Rspec Integration Negative Test Fails

I have a couple custom validators I'm using to validate a paperclip attachment is an image and not over 5MB. Everything works as expected I'm a bit curious about one thing though. My integration test ...
1
vote
0answers
197 views

How do I include a module in spec_helper.rb?

I am setting up testing for the paperclip gem and part of the instructions are this: In spec_helper.rb, you'll need to require the matchers: require "paperclip/matchers" And include the module: ...
1
vote
0answers
161 views

How to test paperclip validation with this relationship?

I want to test the validations for the Post model. For now, I have this: class Asset < ActiveRecord::Base belongs_to :post has_attached_file :image, styles: { thumb: ...
3
votes
1answer
318 views

RSpec + Paperclip: identify: no decode delegate for this image format

I am trying to run my RSpec tests and I keep getting this error when the paperclip tests are ran: identify: no decode delegate for this image format `0x000001034f6718>' @ ...
3
votes
1answer
216 views

Test paperclip image styles with Rspec

I have a Banner, with an attached file, using paperclip. Paperclip will create "derivatives" for an uploaded image, using the "styles" parameter: class Banner < ActiveRecord::Base ...
1
vote
1answer
618 views

Paperclip Rspec tests : why missing attr_accessor?

I had a set of Rspec User Model tests that were passing, until I had the paperclip attribute "profile picture". Everything is fine with paperclip, it works great, but I would like my tests also to be ...
5
votes
0answers
431 views

Paperclip/Rspec tests: Is there a faster way to test paperclip validates_attachment_content_type?

One thing I've noticed is that in most of the projects I do, the one spec that always takes a long time (30 seconds +) is this shoulda/paperclip helper: it { should ...
3
votes
1answer
968 views

Rails 'post' command in rspec controllers: Files aren't passing through. (Is there a multipart setting?)

I'm trying to run the following spec describe "POST create" do describe "with valid params" do it "redirects to the created banner" do post :create, :banner => valid_attributes ...
1
vote
2answers
267 views

Test environment - errors with Paperclip

I am beginning to write tests for an application and I'm having trouble getting the test environment to work. My system has Paperclip for file uploads and it's tripping up at any attempt to start the ...
0
votes
1answer
377 views

Rspec & Paperclip: Broken with attr_accessible?

I'm having a problem getting my rspec controller tests to pass with attr_accessible in Rspec...but not from the console. post :create, :banner => valid_attributes fails, but ...
2
votes
0answers
258 views

Error with Paperclip and RSpec 2.6

I'm trying to testing the paperclip methods in my model and I got the following problem: 1) InventoryImportRequest Failure/Error: it { should have_attached_file(:file) } NoMethodError: undefined ...
3
votes
1answer
179 views

How do you start another rails instance in cucumber?

Short Version How do you programmaticly start a rails server in cucumber (or other testing frameworks), and wait until it running Longer Version I am working on a project in which clients embeds ...
5
votes
1answer
3k views

Testing Paperclip file uploading with RSpec

I don't really care about testing file uploads, but since I have validates_attachment_presence, etc.. in my model, rspec is complaining. So now I'm creating my model with these attributes in the spec ...
5
votes
1answer
974 views

Rspec tests hanging with Paperclip

I have a Picture model in my app that uses Paperclip to attach an image to it. The model: class Picture < ActiveRecord::Base has_attached_file :image, :default_url => ...
15
votes
4answers
12k views

Unit testing paperclip uploads with Rspec (Rails)

Total Rspec noob here. Writing my first tests tonight. I've got a model called Image. Using paperclip I attach a file called photo. Standard stuff. I've run the paperclip generator and ...