Initial commit
[yaffs-website] / node_modules / globule / node_modules / minimatch / test / extglob-ending-with-state-char.js
1 var test = require('tap').test
2 var minimatch = require('../')
3
4 test('extglob ending with statechar', function(t) {
5   t.notOk(minimatch('ax', 'a?(b*)'))
6   t.ok(minimatch('ax', '?(a*|b)'))
7   t.end()
8 })