mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 05:00:15 +00:00
9 lines
200 B
JavaScript
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()
|
|
})
|