I've written some tests using Capybara, but I'm not using selenium and neither any other JS drivers. But my doubt is if I can test a destroy method this way? Since I need to confirm a JS confirmation and the data-method = "delete" can't be visited...

I would like to do something very Capybara's way like:

visit '/people/123', :data-method => 'delete'

Do you guys know if is there some way to do that?

Thanks in advance, Andre

link|improve this question

55% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Rails has JavaScript code which generates a form from the link's href and data-method attributes and submits it; this won't work without JS.

One way to test this: first, test for the presence of the link and proper attributes (href, data-method), then trigger the delete request manually with the Capybara::RackTest::Driver#delete method. If you do this often, write a helper method wrapping those two steps.

link|improve this answer
Thanks for your answer. Besides that I found a blog post about the same problem (blog.ardes.com/2010/4/28/…) and he managed to solve it with the lines: rack_test_session_wrapper = Capybara.current_session.driver rack_test_session_wrapper.process :delete,mycontrollerpath(@item) – AndreDurao May 9 '11 at 20:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.