Sha256: d0c77b9322b0d454e5f3d1a8eb460db587b2a3256660a790edf114c72091621a

Contents?: true

Size: 719 Bytes

Versions: 1

Compression:

Stored size: 719 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.location.length.must_be :>, 0
    puts @movie.location
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
movlog-0.2.6 spec/omdb_spec.rb