var fs = require('fs');
var path = require('path');
describe('xml2json', function() {
it('should convert xml to json');
it('should convert xml to reversible json');
it('should convert xml to a javascript object');
it('should escape problematic characters in element values');
});
describe('json2xml', function() {
it('should return -1 when the value is not present');
it('should return the correct index when the value is present');
});