webmock

A collection of 1 post
Setting up VCR and Webmock for Cucumber Testing
cucumber

Setting up VCR and Webmock for Cucumber Testing

In order to setup VCR and webmock for Cucumber testing you should: Add webmock and VCR gems to your Gemfile.rb: #Gemfile.rb group :test do gem 'webmock' gem 'vcr' end Add file called vcr_setup.rb in your /features/support/ folder that will be used for VCR configuration. # features/
1 min read
Page 1 of 1