node-red/test/red/nodes/registry_spec.js

35 lines
1.0 KiB
JavaScript
Raw Normal View History

2014-05-03 23:26:35 +02:00
/**
* Copyright 2014 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
2013-10-20 22:42:01 +02:00
var should = require("should");
2014-07-17 09:06:30 +02:00
var RedNodes = require("../../../red/nodes");
2013-10-20 22:42:01 +02:00
2014-07-17 09:06:30 +02:00
var RedNode = require("../../../red/nodes/Node");
2013-10-20 22:42:01 +02:00
describe('NodeRegistry', function() {
it('automatically registers new nodes',function() {
2014-03-31 15:41:51 +02:00
var testNode = RedNodes.getNode('123');
should.not.exist(n);
2013-10-20 22:42:01 +02:00
var n = new RedNode({id:'123',type:'abc'});
2014-03-31 15:41:51 +02:00
var newNode = RedNodes.getNode('123');
should.strictEqual(n,newNode);
2013-10-20 22:42:01 +02:00
});
})