aboutsummaryrefslogtreecommitdiffstats
path: root/test/webcals/sax/propstat_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/webcals/sax/propstat_test.js')
-rw-r--r--test/webcals/sax/propstat_test.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/webcals/sax/propstat_test.js b/test/webcals/sax/propstat_test.js
deleted file mode 100644
index 56e65fd..0000000
--- a/test/webcals/sax/propstat_test.js
+++ /dev/null
@@ -1,27 +0,0 @@
-suite('webcals/sax/propstat', function() {
- var stat = requireLib('sax/propstat'),
- sax = requireLib('sax'),
- subject;
-
- var expected = {
- status: 200,
- 'principal-URL': '/calendar/dav/calmozilla1@gmail.com/user/',
- 'resource-type': [
- 'principal',
- 'collection'
- ]
- };
-
- test('propstat success', function(done) {
- var parser = sax();
-
- console.log(parser.on);
- stat(parser, function(err, result) {
- console.log(result);
- done();
- });
-
- parser.write(loadSample('xml/propstat-success.xml')).close();
- });
-
-});