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