I have this, when i do rake routes
admin_pdf_templates GET /admin/pdf_templates(.:format) {:controller=>"admin/pdf_templates", :action=>"show"} PUT /admin/pdf_templates(.:format) {:controller=>"admin/pdf_templates", :action=>"update"} DELETE /admin/pdf_templates(.:format) {:controller=>"admin/pdf_templates", :action=>"destroy"} POST /admin/pdf_templates(.:format) {:controller=>"admin/pdf_templates", :action=>"create"}
what will be be path for create action in paths.rb in cucumber.
My paths.rb is when /create pdf/ admin_pdf_templates_path(:id => @user.id)
above path calls GET method . How do i call POST method in paths.rb in cucumber.