discourse/spec/lib/onebox/engine/github_blob_onebox_spec.rb

25 lines
708 B
Ruby

# frozen_string_literal: true
require "rails_helper"
describe Onebox::Engine::GithubBlobOnebox do
before do
@link = "https://github.com/discourse/onebox/blob/master/lib/onebox/engine/github_blob_onebox.rb"
stub_request(:get, "https://raw.githubusercontent.com/discourse/onebox/master/lib/onebox/engine/github_blob_onebox.rb")
.to_return(status: 200, body: onebox_response(described_class.onebox_name))
end
include_context "engines"
it_behaves_like "an engine"
describe "#to_html" do
it "includes file name" do
expect(html).to include("github_blob_onebox.rb")
end
it "includes blob contents" do
expect(html).to include("module Oneboxer")
end
end
end