2015-10-11 10:41:23 +01:00
|
|
|
require 'rails_helper'
|
2014-05-28 17:15:10 +10:00
|
|
|
require_dependency 'oneboxer'
|
|
|
|
|
|
|
|
describe Oneboxer do
|
2016-10-24 12:46:22 +02:00
|
|
|
|
2014-05-28 17:15:10 +10:00
|
|
|
it "returns blank string for an invalid onebox" do
|
2017-04-15 12:11:02 +08:00
|
|
|
stub_request(:get, "http://boom.com").to_return(body: "")
|
2017-05-22 16:52:26 -04:00
|
|
|
stub_request(:head, "http://boom.com").to_return(body: "")
|
2017-04-15 12:11:02 +08:00
|
|
|
|
2015-01-09 13:34:37 -03:00
|
|
|
expect(Oneboxer.preview("http://boom.com")).to eq("")
|
|
|
|
expect(Oneboxer.onebox("http://boom.com")).to eq("")
|
2014-05-28 17:15:10 +10:00
|
|
|
end
|
2016-10-24 12:46:22 +02:00
|
|
|
|
2014-05-28 17:15:10 +10:00
|
|
|
end
|