Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-06-22 17:39:16 +0300
committerJames Lopez <james@jameslopez.es>2016-06-22 17:39:16 +0300
commit48d76ecec8ec0387db4fbbda3f065c424c3ea51a (patch)
tree3c20f6a5d53fe5f1199036de6ed498eea242ca3d /spec/models
parent26b612258fe4223a91403e6414cb3f5897e2dd5e (diff)
another fix and fixed spec
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/project_spec.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index 897b6898f54..5859691a3c4 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -65,7 +65,14 @@ describe Project, models: true do
end
it 'should not allow an invalid URI as import_url' do
- project2 = build(:project)
+ project2 = build(:project, import_url: 'invalid://')
+
+ expect(project2).not_to be_valid
+ end
+
+ it 'should allow a valid URI as import_url' do
+ project2 = build(:project, import_url: 'ssh://test@gitlab.com/project.git')
+
expect(project2).to be_valid
end
end