summaryrefslogtreecommitdiffstats
path: root/test/lib/sendgrid.test.js
diff options
context:
space:
mode:
authorscottmotte <scott@scottmotte.com>2013-07-18 20:36:08 +0000
committerscottmotte <scott@scottmotte.com>2013-07-18 20:36:08 +0000
commit07e93f39d4c82019cd270a9a9331748f5d40d1c4 (patch)
tree104fc6d97838312d6d1852c0289bbc3f33e7839d /test/lib/sendgrid.test.js
parent3b206f0a3cbe6a0b632b4775882c867ec1b8a762 (diff)
downloadsendgrid-nodejs-07e93f39d4c82019cd270a9a9331748f5d40d1c4.zip
sendgrid-nodejs-07e93f39d4c82019cd270a9a9331748f5d40d1c4.tar.gz
sendgrid-nodejs-07e93f39d4c82019cd270a9a9331748f5d40d1c4.tar.bz2
Verion bump 0.2.8 (plus, sanity check for version in tests)v0.2.8
Diffstat (limited to 'test/lib/sendgrid.test.js')
-rw-r--r--test/lib/sendgrid.test.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lib/sendgrid.test.js b/test/lib/sendgrid.test.js
index 32ad2be..d1e01c0 100644
--- a/test/lib/sendgrid.test.js
+++ b/test/lib/sendgrid.test.js
@@ -25,6 +25,10 @@ describe('SendGrid', function () {
sendgrid = new SendGrid(API_USER, API_KEY);
});
+ it('version should be set', function() {
+ expect(sendgrid.version).to.equal("0.2.8");
+ });
+
describe('#send', function() {
var payload, mock, webApi, postParams, postParamsString;