Sha256: 7ee13dcd6779259523d57b5e95d1ebf08ee663435107e145fb29ab9f38b19705
Contents?: true
Size: 694 Bytes
Versions: 1
Compression:
Stored size: 694 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 @movie = Movlog::Movie.find(t: OMDB_KEYWORD) end after do VCR.eject_cassette end it 'should get the data of a movie' do @movie.imdb_id.length.must_be :>, 0 @movie.title.length.must_be :>, 0 @movie.year.length.must_be :>, 0 @movie.actors.length.must_be :>, 0 @movie.poster.length.must_be :>, 0 @movie.plot.length.must_be :>, 0 @movie.response.length.must_be :>, 0 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
movlog-0.2.1 | spec/omdb_spec.rb |