2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-05-28 03:15:10 -04:00
|
|
|
require_dependency 'oneboxer'
|
|
|
|
|
|
|
|
describe Oneboxer do
|
2016-10-24 06:46:22 -04:00
|
|
|
|
2014-05-28 03:15:10 -04:00
|
|
|
it "returns blank string for an invalid onebox" do
|
2017-04-15 00:11:02 -04: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 00:11:02 -04:00
|
|
|
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(Oneboxer.preview("http://boom.com")).to eq("")
|
|
|
|
expect(Oneboxer.onebox("http://boom.com")).to eq("")
|
2014-05-28 03:15:10 -04:00
|
|
|
end
|
2016-10-24 06:46:22 -04:00
|
|
|
|
2014-05-28 03:15:10 -04:00
|
|
|
end
|