diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index 8aa4c7fed1a700d3006a882e1ebcfc0b59461fcb..373accfe4120f0a96a73a847024adb112549bf90 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) }