mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:46:50 +08:00
4ea21fa2d0
This change both speeds up specs (less strings to allocate) and helps catch cases where methods in Discourse are mutating inputs. Overall we will be migrating everything to use #frozen_string_literal: true it will take a while, but this is the first and safest move in this direction
35 lines
1.0 KiB
Ruby
35 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_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.enable_flash_video_onebox = true
|
|
end
|
|
|
|
it "generates a flash video" do
|
|
expect(@o.to_html).to match_html(
|
|
"<object width='100%' height='100%'><param name='http://player.56.com/v_OTMyNTk1MzE.swf' value='http://player.56.com/v_OTMyNTk1MzE.swf'><embed src='http://player.56.com/v_OTMyNTk1MzE.swf' width='100%' height='100%'></embed></object>"
|
|
)
|
|
end
|
|
end
|
|
|
|
context "when SiteSetting.enable_flash_video_onebox is false" do
|
|
before do
|
|
SiteSetting.enable_flash_video_onebox = false
|
|
end
|
|
|
|
it "generates a link" do
|
|
expect(@o.to_html).to match_html(
|
|
"<a href='http://player.56.com/v_OTMyNTk1MzE.swf'>http://player.56.com/v_OTMyNTk1MzE.swf</a>"
|
|
)
|
|
end
|
|
end
|
|
end
|