summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorBruno Albuquerque <bga@bug-br.org.br>2014-01-20 08:00:50 -0500
committerBruno Albuquerque <bga@bug-br.org.br>2014-01-20 08:00:50 -0500
commite77694bff3e0867f226be28108b814895d32d354 (patch)
treed7b8c0561ad568dbc7ddcde439de10a9288a2fdd /spec
parentfb782476f9b68641019d91cf6de9899333518ab5 (diff)
downloadgitlab-ce-e77694bff3e0867f226be28108b814895d32d354.tar.gz
Added a simple test to web_url_without_protocol.
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index 8aa4c7fed1a..373accfe412 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -99,6 +99,11 @@ describe Project do
project.web_url.should == "#{Gitlab.config.gitlab.url}/somewhere"
end
+ it "returns the web URL without the protocol for this repo" do
+ project = Project.new(path: "somewhere")
+ project.web_url_without_protocol.should == "#{Gitlab.config.gitlab.host}/somewhere"
+ end
+
describe "last_activity methods" do
let(:project) { create(:project) }
let(:last_event) { double(created_at: Time.now) }