UNPKG

391 BJavaScriptView Raw
1/* jshint expr: true */
2/* global describe: false, it: false */
3'use strict';
4var stringify = require('../index');
5
6describe('when the module is required', function () {
7 it('should return a function', function () {
8 stringify.should.be.a.Function;
9 });
10
11 it('should have a method "registerWithRequire"', function () {
12 stringify.registerWithRequire.should.be.a.Function;
13 });
14});