mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +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.
27 lines
1005 B
Ruby
27 lines
1005 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe Onebox::Engine::CloudAppOnebox do
|
|
before do
|
|
stub_request(:get, "https://cl.ly/0m2a2u2k440O").to_return(status: 200, body: onebox_response("cloudapp-gif"))
|
|
stub_request(:get, "https://cl.ly/0T0c2J3S373X").to_return(status: 200, body: onebox_response("cloudapp-mp4"))
|
|
stub_request(:get, "https://cl.ly/2C0E1V451J0C").to_return(status: 200, body: onebox_response("cloudapp-jpg"))
|
|
stub_request(:get, "https://cl.ly/1x1f2g253l03").to_return(status: 200, body: onebox_response("cloudapp-others"))
|
|
end
|
|
|
|
it "supports gif" do
|
|
expect(Onebox.preview('https://cl.ly/0m2a2u2k440O').to_s).to match(/<img/)
|
|
end
|
|
|
|
it "supports mp4" do
|
|
expect(Onebox.preview('https://cl.ly/0T0c2J3S373X').to_s).to match(/<video/)
|
|
end
|
|
|
|
it "supports jpg" do
|
|
expect(Onebox.preview('https://cl.ly/2C0E1V451J0C').to_s).to match(/<img/)
|
|
end
|
|
|
|
it "links to other formats" do
|
|
expect(Onebox.preview('https://cl.ly/1x1f2g253l03').to_s).to match(/<a/)
|
|
end
|
|
end
|