Repository URL to install this package:
|
Version:
0.1.6 ▾
|
require "vcr"
require File.expand_path("../../../spec/support/sample_service_matcher", __FILE__)
VCR.configure do |c|
c.hook_into :webmock
c.cassette_library_dir = "features/cassettes"
c.default_cassette_options = {
:record => :none,
:match_requests_on => [:method, OData::Support::SampleServiceMatcher]
}
end
VCR.cucumber_tags do |t|
t.tags "@basic_auth",
"@batch_request",
"@complex_types",
"@error_handling",
"@query_builder",
"@service",
"@service_manage",
"@service_methods",
"@ssl",
"@type_conversion"
end