diff --git a/gemp-lotr/gemp-lotr-common/pom.xml b/gemp-lotr/gemp-lotr-common/pom.xml
index 5804488dc..6bd934ab6 100644
--- a/gemp-lotr/gemp-lotr-common/pom.xml
+++ b/gemp-lotr/gemp-lotr-common/pom.xml
@@ -10,4 +10,12 @@
com.gempukku.lotro
gemp-lotr-common
1.0-SNAPSHOT
+
+
+ junit
+ junit
+ 4.9
+ test
+
+
\ No newline at end of file
diff --git a/gemp-lotr/gemp-lotr-common/src/test/java/com/gempukku/lotro/common/CultureTest.java b/gemp-lotr/gemp-lotr-common/src/test/java/com/gempukku/lotro/common/CultureTest.java
new file mode 100644
index 000000000..a5a24d109
--- /dev/null
+++ b/gemp-lotr/gemp-lotr-common/src/test/java/com/gempukku/lotro/common/CultureTest.java
@@ -0,0 +1,13 @@
+package com.gempukku.lotro.common;
+
+import org.junit.Test;
+
+import static junit.framework.Assert.assertSame;
+
+public class CultureTest {
+ @Test
+ public void urukHaiEnum() {
+ Culture urukHai = Enum.valueOf(Culture.class, "URUK_HAI");
+ assertSame(Culture.URUK_HAI, urukHai);
+ }
+}