Sha256: 6719c1cc965e7e1db5e0392b6a6aa406696fa3bce3f5012619ecceaf62a4375b
Contents?: true
Size: 610 Bytes
Versions: 142
Compression:
Stored size: 610 Bytes
Contents
require "spec_helper" describe Onebox::Engine::GithubBlobOnebox do before(:all) do @link = "https://github.com/discourse/discourse/blob/master/lib/oneboxer/github_blob_onebox.rb" fake("https://raw.github.com/discourse/discourse/master/lib/oneboxer/github_blob_onebox.rb", 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
Version data entries
142 entries across 142 versions & 1 rubygems
Version | Path |
---|---|
onebox-1.2.1 | spec/lib/onebox/engine/github_blob_onebox_spec.rb |
onebox-1.2.0 | spec/lib/onebox/engine/github_blob_onebox_spec.rb |