diff options
author | James Lal <james@lightsofapollo.com> | 2013-05-02 14:02:07 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2013-05-02 14:02:07 -0700 |
commit | c81e925aa6dada192db75dccd4287ab1e9e09ab2 (patch) | |
tree | 5e7e4ee8dcc3cb01d48b4b88ab14039bc50cf034 /test/caldav/index_test.js | |
parent | 9b6e2c616154f2c20fe6272dca083868c02f98f4 (diff) | |
parent | 8857b80ae0dd7be54d0d731000c9f8edb0434336 (diff) | |
download | jsCalDAV-c81e925aa6dada192db75dccd4287ab1e9e09ab2.tar.gz |
Merge pull request #14 from lightsofapollo/oauth
Bug 867747 - Google OAuth implementation
Diffstat (limited to 'test/caldav/index_test.js')
-rw-r--r-- | test/caldav/index_test.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/caldav/index_test.js b/test/caldav/index_test.js index 59012a4..baad822 100644 --- a/test/caldav/index_test.js +++ b/test/caldav/index_test.js @@ -31,6 +31,8 @@ suite('caldav', function() { assert.ok(root.Connection, 'Caldav.Connection'); assert.ok(root.Resources, 'Caldav.Resources'); assert.ok(root.Resources.Calendar, 'Calendar.Resources.Calendar'); + assert.ok(root.OAuth2, 'OAuth2'); + assert.ok(root.Http, 'Http'); }); }); |