describe 'A mixed Test' => sub { it 'runs Test::Spec and Test::Class tests' => sub { [...] }; }; #### use Test::More; #### ok(1); #### ok 1 - test Hello #### describe 'A Fruit' => { [general tests on a Fruit, here] describe 'attached to its branch' => { [tests on Fruits which are still on their branch] [example :] it 'grows' => sub { ok(1); } }; describe 'fallen on the floor' => { [tests on Fruits which have fallen on the floor] }; describe 'on a pie' => sub { [tests on Fruits which are on a pie] }; }; #### ok 1 - A fruit attached to its branch grows