load.js 865 B

123456789101112131415161718192021222324
  1. // --------------------------------------------------------------------------------------------------------------------
  2. //
  3. // load.js - tests for node-data2xml
  4. //
  5. // Copyright (c) 2011 Andrew Chilton - http://chilts.org/
  6. // Written by Andrew Chilton <andychilton@gmail.com>
  7. //
  8. // License: http://opensource.org/licenses/MIT
  9. //
  10. // --------------------------------------------------------------------------------------------------------------------
  11. var test = require('tape');
  12. var data2xml;
  13. // --------------------------------------------------------------------------------------------------------------------
  14. test('load data2xml', function (t) {
  15. data2xml = require('../data2xml');
  16. t.ok(data2xml, 'package loaded');
  17. t.end();
  18. });
  19. // --------------------------------------------------------------------------------------------------------------------