```rootContext("") { given { rootContextFixtur...
# minutest
c
Copy code
rootContext("") {
    given { rootContextFixture() }
    context("subcontext") {
        given { differentFixture() }
    }
    context("subcontext with derived rootfixture") {
        given {parentFixture -> derivedFixture(parentFixture)}
    }
}