Sha256: 9825f75e32ca64db07e9d8fdfae78a4f2f4f3cfdbe4a63707076c274c32fa47b
Contents?: true
Size: 619 Bytes
Versions: 16
Compression:
Stored size: 619 Bytes
Contents
# frozen_string_literal: true require_relative 'spec_helper.rb' describe 'OMDB specifications' do VCR.configure do |c| c.cassette_library_dir = CASSETTES_FOLDER c.hook_into :webmock end before do VCR.insert_cassette CASSETTE_FILE_1, record: :new_episodes @movies = Movlog::Movies.find(s: OMDB_KEYWORD) end after do VCR.eject_cassette end it 'should get the data of a movie' do @movies.movies.length.must_be :>, 0 @movies.num.to_i.must_be :>, 0 end it 'should get the filming location of a movie' do @movies.movies.first.get_location.length.must_be :>, 0 end end
Version data entries
16 entries across 16 versions & 1 rubygems