From 2b0513ec7361eff0c340a537a368875f984cf3b6 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Tue, 17 Jun 2014 10:57:16 -0400
Subject: [PATCH] Merge branch 'fix-mxwebxml'

---
 src/test/java/com/gitblit/tests/mock/MockRuntimeManager.java |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/src/test/java/com/gitblit/tests/mock/MockRuntimeManager.java b/src/test/java/com/gitblit/tests/mock/MockRuntimeManager.java
index aaa6c66..54be539 100644
--- a/src/test/java/com/gitblit/tests/mock/MockRuntimeManager.java
+++ b/src/test/java/com/gitblit/tests/mock/MockRuntimeManager.java
@@ -17,6 +17,7 @@
 
 import java.io.File;
 import java.util.Date;
+import java.util.Locale;
 import java.util.Map;
 import java.util.TimeZone;
 
@@ -71,7 +72,27 @@
 	}
 
 	@Override
+	public Locale getLocale() {
+		return Locale.getDefault();
+	}
+
+	@Override
 	public boolean isServingRepositories() {
+		return true;
+	}
+
+	@Override
+	public boolean isServingHTTP() {
+		return true;
+	}
+
+	@Override
+	public boolean isServingGIT() {
+		return true;
+	}
+
+	@Override
+	public boolean isServingSSH() {
 		return true;
 	}
 
@@ -137,7 +158,7 @@
 	}
 
 	@Override
-	public IRuntimeManager setup() {
+	public IRuntimeManager start() {
 		return this;
 	}
 }

--
Gitblit v1.9.1