diff options
author | Kyle Partridge <partkyle@gmail.com> | 2012-01-05 17:51:42 -0800 |
---|---|---|
committer | Kyle Partridge <partkyle@gmail.com> | 2012-01-05 17:51:42 -0800 |
commit | b059a333829b23517cdade1e9927598ea3fe617c (patch) | |
tree | 89de4b7e2130e407a66d7f35e9b1bb07c0076fbe /spec/lib/mail.spec.js | |
parent | 08ab03d689310ebe89ca9b673ecdc8bd32abd150 (diff) | |
download | sendgrid-nodejs-b059a333829b23517cdade1e9927598ea3fe617c.zip sendgrid-nodejs-b059a333829b23517cdade1e9927598ea3fe617c.tar.gz sendgrid-nodejs-b059a333829b23517cdade1e9927598ea3fe617c.tar.bz2 |
moved my changes over
Diffstat (limited to 'spec/lib/mail.spec.js')
-rw-r--r-- | spec/lib/mail.spec.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/lib/mail.spec.js b/spec/lib/mail.spec.js new file mode 100644 index 0000000..0847206 --- /dev/null +++ b/spec/lib/mail.spec.js @@ -0,0 +1,6 @@ +describe('Mail', function () { + it("should be able to send mail", function () { + var mail = new Mail(); + mail.send().should.be.true; + }); +}); |