From 90ac39a86d946671660e6703ded09bb3a850c869 Mon Sep 17 00:00:00 2001 From: Damian Suarez Date: Tue, 12 Feb 2013 10:37:48 -0300 Subject: [PATCH] test: add testing files --- test/index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/index.js diff --git a/test/index.js b/test/index.js new file mode 100644 index 0000000..31d81ad --- /dev/null +++ b/test/index.js @@ -0,0 +1,7 @@ +var mandril = require('../'); + +describe('send a simepl email', function(){ + it('hould be return an success response', function(done){ + return done(); + }); +});