aboutsummaryrefslogtreecommitdiffstats
path: root/test/caldav/index_test.js
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-10-02 23:27:19 -0700
committerJames Lal <james@lightsofapollo.com>2012-10-02 23:27:19 -0700
commit13966ebe577c18436332923fb367a3f6ab7b288e (patch)
tree2e92f1083cfc7ce43c95ff207d7ea79944a98081 /test/caldav/index_test.js
parentda93e0810d194a2b484f89e0bb4b121e41ad5c0c (diff)
downloadjsCalDAV-13966ebe577c18436332923fb367a3f6ab7b288e.tar.gz
replace templates with much improved query/filter interface. Update CalendarQuery to reflect these changes
Diffstat (limited to 'test/caldav/index_test.js')
-rw-r--r--test/caldav/index_test.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/caldav/index_test.js b/test/caldav/index_test.js
index 969c3a1..59012a4 100644
--- a/test/caldav/index_test.js
+++ b/test/caldav/index_test.js
@@ -24,13 +24,13 @@ suite('caldav', function() {
});
test('namespaces', function() {
- assert.ok(root);
- assert.ok(root.Request);
- assert.ok(root.Templates);
- assert.ok(root.Xhr);
- assert.ok(root.Connection);
- assert.ok(root.Resources);
- assert.ok(root.Resources.Calendar);
+ assert.ok(root, 'Caldav');
+ assert.ok(root.Request, 'Caldav.Request');
+ assert.ok(root.QueryBuilder, 'Caldav.QueryBuilder');
+ assert.ok(root.Xhr, 'Caldav.Xhr');
+ assert.ok(root.Connection, 'Caldav.Connection');
+ assert.ok(root.Resources, 'Caldav.Resources');
+ assert.ok(root.Resources.Calendar, 'Calendar.Resources.Calendar');
});
});