我有这个代码:
class AccountSpec extends Specification {
def fakeApp = FakeApplication(additionalConfiguration = inMemoryDatabase())
"Every account" should {
"have a user" in running(fakeApp) {
Account.create("Basic account", "username")
...
etc...
}
}
}
如果我尝试运行这个规范,我会得到一个错误,因为没有用户名为“username”的用户。所以我想做的是:
def before = { createTestUser() }
我尝试了不同的方法,但还没有找到解决方案。