bf57836fc4f7b64e8920baad6945880901a613c0.svn-base 200 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 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() })