Formatted prop_parser tests
parent
08771b2b97
commit
b8e512c69e
|
@ -24,23 +24,31 @@
|
||||||
|
|
||||||
var common = require( './common' ),
|
var common = require( './common' ),
|
||||||
assert = require( 'assert' ),
|
assert = require( 'assert' ),
|
||||||
parse = common.require( 'prop_parser' ).parseKeywords;
|
parse = common.require( 'prop_parser' ).parseKeywords,
|
||||||
|
|
||||||
|
data = parse( 'final static abstract foo' ),
|
||||||
|
keywords = data.keywords
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
var data = parse( 'final static abstract foo' ),
|
( function testProperlyRetrievesName()
|
||||||
keywords = data.keywords;
|
{
|
||||||
|
assert.equal(
|
||||||
|
data.name,
|
||||||
|
'foo',
|
||||||
|
"Property keyword parser properly retrieves name"
|
||||||
|
);
|
||||||
|
} )();
|
||||||
|
|
||||||
assert.equal(
|
|
||||||
data.name,
|
|
||||||
'foo',
|
|
||||||
"Property keyword parser properly retrieves name"
|
|
||||||
);
|
|
||||||
|
|
||||||
assert.ok(
|
( function testProperlyRetrievesAllKeywords()
|
||||||
( ( keywords['final'] === true )
|
{
|
||||||
&& ( keywords['static'] === true )
|
assert.ok(
|
||||||
&& ( keywords['abstract'] === true )
|
( ( keywords['final'] === true )
|
||||||
),
|
&& ( keywords['static'] === true )
|
||||||
"Property keyword parser properly retrieves all keywords"
|
&& ( keywords['abstract'] === true )
|
||||||
);
|
),
|
||||||
|
"Property keyword parser properly retrieves all keywords"
|
||||||
|
);
|
||||||
|
} )();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue