spec/unit/environment/git_spec.rb in r10k-3.14.2 vs spec/unit/environment/git_spec.rb in r10k-3.15.0
- old
+ new
@@ -7,11 +7,11 @@
described_class.new(
'myenv',
'/some/nonexistent/environmentdir',
'gitref',
{
- :remote => 'git://git-server.site/my-repo.git',
+ :remote => 'https://git-server.site/my-repo.git',
:ref => 'd026ea677116424d2968edb9cee8cbc24d09322b',
}
)
end
@@ -43,10 +43,10 @@
it "can return the environment dirname" do
expect(subject.dirname).to eq 'gitref'
end
it "can return the environment remote" do
- expect(subject.remote).to eq 'git://git-server.site/my-repo.git'
+ expect(subject.remote).to eq 'https://git-server.site/my-repo.git'
end
it "can return the environment ref" do
expect(subject.ref).to eq 'd026ea677116424d2968edb9cee8cbc24d09322b'
end