mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 13:31:44 +08:00
68b4fe4cf8
See https://github.com/discourse/discourse/security/advisories/GHSA-rcc5-28r3-23rr Co-authored-by: OsamaSayegh <asooomaasoooma90@gmail.com> Co-authored-by: Daniel Waterworth <me@danielwaterworth.com>
16 lines
453 B
Ruby
16 lines
453 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe GitUrl do
|
|
it "handles the discourse github repo by ssh" do
|
|
expect(GitUrl.normalize("git@github.com:discourse/discourse.git")).to eq(
|
|
"ssh://git@github.com/discourse/discourse.git"
|
|
)
|
|
end
|
|
|
|
it "handles the discourse github repo by https" do
|
|
expect(GitUrl.normalize("https://github.com/discourse/discourse.git")).to eq(
|
|
"https://github.com/discourse/discourse.git"
|
|
)
|
|
end
|
|
end
|