test.js: ``` var test = require('prova'); test('a', function(t) { t.test('b', function(t) { t.equal(2 + 2, 4); t.end(); }); }); ``` I expect `-g b` to run this test, but: ``` $ prova test.js 1 passed assertions. $ prova test.js -g b 0 passed assertions. ```