mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:42:57 +08:00
31 lines
786 B
Ruby
31 lines
786 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "rails_helper"
|
||
|
|
||
|
describe Onebox::Engine::HTML do
|
||
|
before do
|
||
|
@link = "http://amazon.com"
|
||
|
|
||
|
stub_request(:get, @link).to_return(status: 200, body: onebox_response("amazon"))
|
||
|
stub_request(:get, "https://www.amazon.com/Seven-Languages-Weeks-Programming-Programmers/dp/193435659X")
|
||
|
.to_return(status: 200, body: onebox_response("amazon"))
|
||
|
end
|
||
|
|
||
|
describe "#raw" do
|
||
|
class OneboxEngineHTML
|
||
|
include Onebox::Engine
|
||
|
include Onebox::Engine::HTML
|
||
|
|
||
|
def initialize(link)
|
||
|
@url = link
|
||
|
@options = {}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
it "returns a Nokogiri object that has a css method" do
|
||
|
object = OneboxEngineHTML.new("http://amazon.com").send(:raw)
|
||
|
expect(object).to respond_to(:css)
|
||
|
end
|
||
|
end
|
||
|
end
|