Method: VCR::Cassette#initialize
- Defined in:
- lib/vcr/cassette.rb
#initialize(name, options = {}) ⇒ Cassette
Returns a new instance of Cassette.
58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/vcr/cassette.rb', line 58 def initialize(name, = {}) @name = name = VCR.configuration..merge() @mutex = Mutex.new raise_error_unless_valid_record_mode log "Initialized with options: #{@options.inspect}" end |