Learn R Programming

vcr (version 0.2.6)

eject_cassette: Eject a cassette

Description

Eject a cassette

Usage

eject_cassette(cassette = NULL, options = list(),
  skip_no_unused_interactions_assertion = NULL)

Arguments

cassette

(character) a single cassette names to eject

options

(list) a list of options to apply to the eject process

skip_no_unused_interactions_assertion

(logical) If TRUE, this will skip the "no unused HTTP interactions" assertion enabled by the allow_unused_http_interactions = FALSE cassette option. This is intended for use when your test has had an error, but your test framework has already handled it - IGNORED FOR NOW

Value

The ejected cassette if there was one

See Also

use_cassette(), insert_cassette()

Examples

Run this code
# NOT RUN {
vcr_configure(dir = tempdir())
insert_cassette("hello")
(x <- current_cassette())

# by default does current cassette
x <- eject_cassette()
x
# can also select by cassette name
# eject_cassette(cassette = "hello")
# }

Run the code above in your browser using DataLab