mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
30 lines
774 B
Ruby
30 lines
774 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Onebox do
|
|
before do
|
|
stub_request(:get, "https://www.amazon.com/product").to_return(
|
|
status: 200,
|
|
body: onebox_response("amazon"),
|
|
)
|
|
end
|
|
|
|
describe "templates" do
|
|
let(:ignored) { ["templates/_layout.mustache"] }
|
|
let(:templates) { Dir["templates/*.mustache"] - ignored }
|
|
|
|
def expect_templates_to_not_match(text)
|
|
templates.each { |template| expect(File.read(template)).not_to match(text) }
|
|
end
|
|
|
|
it "should not contain any script tags" do
|
|
expect_templates_to_not_match(/<script/)
|
|
end
|
|
end
|
|
|
|
describe "has_matcher?" do
|
|
it "has a matcher for a real site" do
|
|
expect(Onebox.has_matcher?("http://www.youtube.com/watch?v=azaIE6QSMUs")).to be true
|
|
end
|
|
end
|
|
end
|