mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:40:39 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
17 lines
482 B
Ruby
17 lines
482 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe Onebox::Engine::ImgurOnebox do
|
|
let(:link) { "https://imgur.com/gallery/Sdc0Klc" }
|
|
let(:imgur) { described_class.new(link) }
|
|
let(:html) { imgur.to_html }
|
|
|
|
before do
|
|
stub_request(:get, link).to_return(status: 200, body: onebox_response("imgur"))
|
|
end
|
|
|
|
it "excludes html tags in title" do
|
|
imgur.stubs(:is_album?).returns(true)
|
|
expect(html).to include("<span class='album-title'>[Album] Did you miss me?</span>")
|
|
end
|
|
end
|