UNPKG

nforce-metadata

Version:

An nforce plugin that facilitates working with the metadata api

20 lines (13 loc) 417 B
var _ = require('lodash'); var nforce = require('nforce'); var meta = require('../'); describe('load', function(){ describe('#function', function(){ it('should not throw in init', function() { meta(nforce, { namespace: 'meta', override: true }); }); it('should allow alternative namespaces', function() { meta(nforce, { namespace: 'foobar', override: true }); }); }); });