Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/candy-chat/candy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Langfeld <ben@langfeld.me>2014-08-07 17:57:20 +0400
committerBen Langfeld <ben@langfeld.me>2014-08-08 02:25:11 +0400
commit80f7415a090be61353e8c4ec858d19d6ea0047ba (patch)
tree2f148e8da262c0bc678fc2d809cdd9265b7b225d /tests
parent590cef61d8d6f0b69d811eb36cda5a9e86134cf0 (diff)
List in tests the things that still need testing
Diffstat (limited to 'tests')
-rw-r--r--tests/candy/unit/core/event.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/candy/unit/core/event.js b/tests/candy/unit/core/event.js
index 5058c57..38f2d20 100644
--- a/tests/candy/unit/core/event.js
+++ b/tests/candy/unit/core/event.js
@@ -17,6 +17,10 @@ define([
bdd.describe('Candy.Core.Event', function () {
testHelper.setupTests(bdd, sinon);
+ bdd.describe('processing strophe connection status events', function () {});
+
+ bdd.describe('processing requests for client version', function () {});
+
bdd.describe('processing non-MUC presence', function () {
var receivePresence = function () {
var presence = new Strophe.Builder('presence', {
@@ -533,5 +537,19 @@ define([
});
});
});
+
+ bdd.describe('processing lists of bookmarks', function () {
+ bdd.describe('from pubsub', function () {});
+
+ bdd.describe('from private storage', function () {});
+ });
+
+ bdd.describe('processing privacy lists', function () {
+ bdd.describe('which contain an error', function () {});
+ });
+
+ bdd.describe('processing messages', function () {});
+
+ bdd.describe('processing room disco info', function () {});
});
});