1234567891011121314151617181920212223242526272829 |
- 'use strict';
- let hljs = require('../../build');
- const pattern = new RegExp(`^${hljs.UNDERSCORE_IDENT_RE}$`);
- describe('.UNDERSCORE_IDENT_RE', function() {
- it('should match any word starting without numbers', function() {
- const words = [ 'foo' , 'bar' , 'baz'
- , 'Foo' , 'Bar' , 'Baz'
- , '_foo' , '_bar' , '_baz'
- , '_Foo' , '_Bar' , '_Baz'
- , '_f_oo', '_ba_r', '_baz_'
- , '_F_oo', '_Ba_r', '_Baz_'
- ];
- words.should.matchEach(pattern);
- });
- it('should not match any word starting with numbers', function() {
- const words = [ '1foo' , '6bar' , '0baz'
- , '2Foo' , '7Bar' , '1Baz'
- , '3f_oo', '8ba_r', '2baz_'
- , '4F_oo', '9Ba_r', '3Baz_'
- ];
- words.should.not.matchEach(pattern);
- });
- });
|