mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:56:01 +08:00
19 lines
527 B
Ruby
19 lines
527 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "rails_helper"
|
||
|
require "onebox/oembed"
|
||
|
|
||
|
describe Onebox::Oembed do
|
||
|
it "excludes html tags" do
|
||
|
json = '{"text": "<iframe src=\'https://ifram.es/foo/bar\'></iframe>"}'
|
||
|
oembed = described_class.new(json)
|
||
|
expect(oembed.text).to be_nil
|
||
|
end
|
||
|
|
||
|
it "includes html tags" do
|
||
|
json = '{"html": "<iframe src=\'https://ifram.es/foo/bar\'></iframe>"}'
|
||
|
oembed = described_class.new(json)
|
||
|
expect(oembed.html).to eq("<iframe src='https://ifram.es/foo/bar'></iframe>")
|
||
|
end
|
||
|
end
|