Versions in this module Expand all Collapse all v0 v0.1.0 Feb 26, 2020 Changes in this version + var ErrFixtureCannotProduceTestingTB = errors.New("fixture cannot produce testing.TB") + var ErrFixtureMustBeFunction = errors.New("fixture can only be functions") + func Once(fn interface{}) interface + type T struct + func (t *T) AfterTest(fn interface{}) + func (t *T) BeforeTest(fn interface{}) + func (t *T) HasLabel(label string) bool + func (t *T) Labels() []string + func (t *T) Run(name string, fn interface{}) bool + type Tedi struct + func New(m *testing.M) *Tedi + func (t *Tedi) AfterTest(fn interface{}) + func (t *Tedi) BeforeTest(fn interface{}) + func (t *Tedi) Fixture(fn interface{}) error + func (t *Tedi) OnceFixture(fn interface{}) error + func (t *Tedi) Run() int + func (t *Tedi) Test(name string, fn interface{}, labels ...string) + func (t *Tedi) TestLabel(name string)