hello webui

pull/11/head
Zlatin Balevsky 2019-07-11 18:34:27 +01:00
parent a767dda044
commit 0de84e704b
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package webui
class HelloController {
def index() {
render "Hello from MuWire"
}
}

View File

@ -0,0 +1,18 @@
package webui
import grails.testing.web.controllers.ControllerUnitTest
import spock.lang.Specification
class HelloControllerSpec extends Specification implements ControllerUnitTest<HelloController> {
def setup() {
}
def cleanup() {
}
void "test something"() {
expect:"fix me"
true == false
}
}