📄 Update year in file headers
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / notification / StartupHandlerTest.kt
index 38e7f1b..aaeea90 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - StartupHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - StartupHandlerTest.kt - Copyright Â© 2019–2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -24,6 +24,7 @@ import net.pterodactylus.util.notify.*
 import net.pterodactylus.util.template.*
 import org.hamcrest.MatcherAssert.*
 import org.hamcrest.Matchers.*
+import java.util.concurrent.TimeUnit.*
 import kotlin.test.*
 
 /**
@@ -50,9 +51,9 @@ class StartupHandlerTest {
        }
 
        @Test
-       fun `handler registers command on startup`() {
+       fun `handler registers command on with 2-minute delay`() {
                eventBus.post(Startup())
-               assertThat(executor.scheduleds, hasSize(1))
+               assertThat(with(executor.scheduleds.single()) { timeUnit.toNanos(delay) }, equalTo(MINUTES.toNanos(2)))
        }
 
        @Test