Sha256: f66ee0368f85c0d8ac870cb468ed25595d0a85b16aec29d489b25062cf8e58ce
Contents?: true
Size: 979 Bytes
Versions: 1
Compression:
Stored size: 979 Bytes
Contents
require "spec_helper" describe Onebox::Engine::DailymotionOnebox do before(:all) do @link = "http://dailymotion.com" fake(@link, response(described_class.template_name)) end before(:each) { Onebox.defaults.cache.clear } let(:link) { @link } it_behaves_like "an engine" describe "#to_html" do let(:html) { described_class.new(link).to_html } it "returns video title" do expect(html).to include("Two Door Cinema Club - Les Vielles Charrues 2013.") end it "returns video image" do expect(html).to include("526x297-bxE.jpg") end it "returns video description" do expect(html).to include("Vibrez au son de l'electro-pop des Irlandais de Two Door Cinema Club,") end it "returns video URL" do expect(html).to include("http://www.dailymotion.com/swf/video/x12h020?autoPlay=1") end it "returns video embed code" it "returns URL" do expect(html).to include(link) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
onebox-1.1.0 | spec/lib/onebox/engine/dailymotion_onebox_spec.rb |