test('Extend container', function (t) {
	t.notOk(sandal.promise, 'should not have an promise fcn');
	sandal.extend(require('../sandal-promise.js'));
	t.end();
});
test('Extend container', function (t) {
	Sandal.extend(require('../index.js'));
	sandal = new Sandal();
	t.end();
});