/**
* Page that lets the user control the rescue mode for a Sone.
*/
+@MenuName("Rescue")
class RescuePage @Inject constructor(template: Template, webInterface: WebInterface):
LoggedInPage("rescue.html", template, "Page.Rescue.Title", webInterface) {
import net.pterodactylus.sone.test.mock
import net.pterodactylus.sone.test.whenever
import net.pterodactylus.sone.web.baseInjector
+import net.pterodactylus.sone.web.page.*
import net.pterodactylus.util.web.Method.POST
import org.hamcrest.MatcherAssert.assertThat
import org.hamcrest.Matchers.equalTo
assertThat(baseInjector.getInstance<RescuePage>(), notNullValue())
}
+ @Test
+ fun `page is annotated with correct menuname`() {
+ assertThat(page.menuName, equalTo("Rescue"))
+ }
+
}