9 lines
310 B
JavaScript
9 lines
310 B
JavaScript
|
var should = require('should');
|
||
|
|
||
|
describe('GRMT ', function () {
|
||
|
it('parses', function () {
|
||
|
var msg = require("../nmea.js").parse("$PGRMT,GPS19x-HVS Software Version 2.20,,,,,,,,*6F");
|
||
|
msg.should.have.property('type', 'sensor-information');
|
||
|
msg.should.have.property('sentence', 'GRMT');
|
||
|
});
|
||
|
});
|