Fixtures are now built with `given` ```given { Cal...
# minutest
d
Fixtures are now built with
given
Copy code
given { Calculator() }
modified with
beforeEach
Copy code
beforeEach {
    it.add(2)
}
and replaced with
given_
Copy code
context("sub-context replacing fixture") {
            given_ { parentFixture -> 
                Fixture("green ${parentFixture.fruit}") 
            }

            test2("sees the replaced fixture") {
                assertEquals("green banana", fruit)
            }
        }