From e77694bff3e0867f226be28108b814895d32d354 Mon Sep 17 00:00:00 2001 From: Bruno Albuquerque Date: Mon, 20 Jan 2014 08:00:50 -0500 Subject: [PATCH] Added a simple test to web_url_without_protocol. --- spec/models/project_spec.rb | 5 +++++ 1 file changed, 5 insertions(+) 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) }