Sha256: 067068038afe476b7f649bd23c0284741209810d22f92c6b767198f9f3cc270a
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
require 'spec_helper' describe Gitable::URI, ".heuristic_parse" do it "returns a Gitable::URI" do uri = "http://github.com/martinemde/gitable" expect(Gitable::URI.heuristic_parse(uri)).to be_a_kind_of(Gitable::URI) end [ "http://host.xz/path/to/repo.git/", "http://host.xz/path/to/repo.git", "ssh://user@host.xz/path/to/repo.git/", "ssh://user@host.xz:1234/path/to/repo.git/", "user@host.xz:path/to/repo.git", "user@host.xz:path/to/repo.git/", "git@github.com:martinemde/gitable.git", ].each do |uri| it "doesn't break the already valid URI: #{uri.inspect}" do expect(Gitable::URI.heuristic_parse(uri).to_s).to eq(uri) end end it "guesses https://github.com/martinemde/gitable.git if I pass in the url bar" do uri = "https://github.com/martinemde/gitable" gitable = Gitable::URI.heuristic_parse(uri) expect(gitable.to_s).to eq("https://github.com/martinemde/gitable.git") end it "isn't upset by trailing slashes" do uri = "https://github.com/martinemde/gitable/" gitable = Gitable::URI.heuristic_parse(uri) expect(gitable.to_s).to eq("https://github.com/martinemde/gitable.git/") end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gitable-0.4.0 | spec/heuristic_parse_spec.rb |
gitable-0.3.1 | spec/heuristic_parse_spec.rb |
gitable-0.3.0 | spec/heuristic_parse_spec.rb |