| 123456789101112131415161718192021222324 |
- // --------------------------------------------------------------------------------------------------------------------
- //
- // load.js - tests for node-data2xml
- //
- // Copyright (c) 2011 Andrew Chilton - http://chilts.org/
- // Written by Andrew Chilton <andychilton@gmail.com>
- //
- // License: http://opensource.org/licenses/MIT
- //
- // --------------------------------------------------------------------------------------------------------------------
- var test = require('tape');
- var data2xml;
- // --------------------------------------------------------------------------------------------------------------------
- test('load data2xml', function (t) {
- data2xml = require('../data2xml');
- t.ok(data2xml, 'package loaded');
- t.end();
- });
- // --------------------------------------------------------------------------------------------------------------------
|