require 'spec_helper' require 'onebox/engine/flash_video_onebox' describe Onebox::Engine::FlashVideoOnebox do before do @o = Onebox::Engine::FlashVideoOnebox.new('http://player.56.com/v_OTMyNTk1MzE.swf') end context "when SiteSetting.enable_flash_video_onebox is true" do before do SiteSetting.stubs(:enable_flash_video_onebox).returns(true) end it "generates a flash video" do expect(@o.to_html).to match_html( "" ) end end context "when SiteSetting.enable_flash_video_onebox is false" do before do SiteSetting.stubs(:enable_flash_video_onebox).returns(false) end it "generates a link" do expect(@o.to_html).to match_html( "http://player.56.com/v_OTMyNTk1MzE.swf" ) end end end