Files
Opal-Estate-Pro/node_modules/glob-watcher/node_modules/minimatch/test/extglob-ending-with-state-char.js
hatuhn f14a34ba19 uapte
2019-09-13 09:44:33 +07:00

9 lines
200 B
JavaScript

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()
})