parts-of-speech
Version:
fasttag part of speech tagger implementation
12 lines (10 loc) • 330 B
JavaScript
var should = require('should');
var tagger = new (require('../POSTagger'))();
describe('POSTagger#tag', function(){
it('should allow the lexicon to be extended', function(){
tagger.extendLexicon({'Obama': ['NNP']});
tagger
.tag(['Mr', 'Obama'])
.should.eql([[ 'Mr', 'NNP' ], [ 'Obama', 'NNP' ]]);
});
});