From 13966ebe577c18436332923fb367a3f6ab7b288e Mon Sep 17 00:00:00 2001 From: James Lal Date: Tue, 2 Oct 2012 23:27:19 -0700 Subject: replace templates with much improved query/filter interface. Update CalendarQuery to reflect these changes --- test/caldav/index_test.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/caldav/index_test.js') 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'); }); }); -- cgit