2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2014-05-28 15:15:10 +08:00
|
|
|
require_dependency 'oneboxer'
|
|
|
|
|
|
|
|
describe Oneboxer do
|
2016-10-24 18:46:22 +08:00
|
|
|
|
2014-05-28 15:15:10 +08: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-23 04:52:26 +08:00
|
|
|
stub_request(:head, "http://boom.com").to_return(body: "")
|
2017-04-15 12:11:02 +08:00
|
|
|
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(Oneboxer.preview("http://boom.com")).to eq("")
|
|
|
|
expect(Oneboxer.onebox("http://boom.com")).to eq("")
|
2014-05-28 15:15:10 +08:00
|
|
|
end
|
2016-10-24 18:46:22 +08:00
|
|
|
|
2014-05-28 15:15:10 +08:00
|
|
|
end
|