Sha256: 0ea1c5c27f4afea8d5ab2c649d0d9f0fff506758302cc4389accb286b26d67af
Contents?: true
Size: 590 Bytes
Versions: 40
Compression:
Stored size: 590 Bytes
Contents
require File.expand_path("../../../base", __FILE__) describe Vagrant::Downloaders::HTTP do let(:ui) { double("ui") } let(:instance) { described_class.new(ui) } describe "matching" do it "should match URLs" do described_class.match?("http://google.com/foo.box").should be described_class.match?("https://google.com/foo.box").should be described_class.match?("http://foo:bar@google.com/foo.box").should be described_class.match?("http://google.com:8500/foo.box").should be end end describe "downloading" do # Integration tests only. end end
Version data entries
40 entries across 40 versions & 6 rubygems