In that case you can do something like ```rootCont...
# minutest
d
In that case you can do something like
Copy code
rootContext<Fixture> {
  context("happy paths") {
    given { Fixture(happy things) }
    .. tests
  }
  context("errors") {
    given { Fixture(sad things) }
    .. tests
  }
}