require 'spec_helper' module Google module Book describe Cover do use_vcr_cassette 'google' subject { Book.search('deleuze').first.cover } %w{thumbnail small medium large extra_large}.each do |attribute| its(attribute) { should_not be_nil } end end end end