summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormallowlabs <mallowlabs@gmail.com>2012-09-08 23:50:47 +0900
committermallowlabs <mallowlabs@gmail.com>2012-09-08 23:50:51 +0900
commit7cb82b858b853ef3d09d85853573ec91b038547a (patch)
treeca388802b051b1b4042215138667377376bc2243 /tests
parente334e3e7622f440662f989b2b91e4eac9370d2da (diff)
downloadgitblit-7cb82b858b853ef3d09d85853573ec91b038547a.tar.gz
gitblit-7cb82b858b853ef3d09d85853573ec91b038547a.zip
Added cookie suport
Diffstat (limited to 'tests')
-rw-r--r--tests/com/gitblit/tests/RedmineUserServiceTest.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/com/gitblit/tests/RedmineUserServiceTest.java b/tests/com/gitblit/tests/RedmineUserServiceTest.java
index a6a8a5eb..0ba58ec5 100644
--- a/tests/com/gitblit/tests/RedmineUserServiceTest.java
+++ b/tests/com/gitblit/tests/RedmineUserServiceTest.java
@@ -1,6 +1,7 @@
package com.gitblit.tests;
import static org.hamcrest.CoreMatchers.is;
+import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertThat;
@@ -27,6 +28,7 @@ public class RedmineUserServiceTest {
assertThat(userModel.getName(), is("RedmineUserId"));
assertThat(userModel.getDisplayName(), is("baz foo"));
assertThat(userModel.emailAddress, is("baz@example.com"));
+ assertNotNull(userModel.cookie);
}
@Test