blob: 6676e2629a7e99e2c615428cc38a3381a0c9c2de [file] [log] [blame]
var test = require('tap').test
var minimatch = require('../')
test('extglob ending with statechar', function(t) {
t.notOk(minimatch('ax', 'a?(b*)'))
t.ok(minimatch('ax', '?(a*|b)'))
t.end()
})