Skip to content

Instantly share code, notes, and snippets.

@anatolyra
Last active June 26, 2018 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anatolyra/a3f4c2721f3cedfc97d0b4650f41c48e to your computer and use it in GitHub Desktop.
Save anatolyra/a3f4c2721f3cedfc97d0b4650f41c48e to your computer and use it in GitHub Desktop.
class MyTestClass extends WordSpec with BeforeAndAfterAll {
val person = Person(carId = None).save() // creating data for test
val car = Car(color = "green", ownerId = None).save()
override def afterAll(): Unit = {
// Clean db after test.
person.destroy()
car.destroy()
}
"My service" should {
"set the owner of the car" in {
val service = new Service
service.setCarOwner(carId = car.id, ownerId = person.id)
service.getPerson(person.id).carId shouldEqual Some(car.id)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment