require "spec_helper" describe Onebox::Engine::NFBOnebox do let(:link) { "http://nfb.ca" } before do fake(link, response("nfb.response")) end it_behaves_like "engines" describe "#to_html" do let(:html) { described_class.new(link).to_html } it "returns video title" do expect(html).to include("Overdose") end it "returns video description" do expect(html).to include("With school, tennis lessons, swimming lessons, art classes,") end it "returns video URL" do expect(html).to include("http://www.nfb.ca/film/overdose_en/") end it "returns the video embed code" do pending expect(html).to include("") end it "returns URL" do expect(html).to include(link) end end end