Commit 0d4cf15f authored by JC Brand's avatar JC Brand

Move changelog entry to right version and add test case.

parent 5cb7ca02
Changelog Changelog
========= =========
0.9.6 (Unreleased)
------------------
* #462 Fix MUC rooms with names containing special characters not working [1st8]
0.9.5 (2015-08-24) 0.9.5 (2015-08-24)
------------------ ------------------
...@@ -9,7 +14,6 @@ Changelog ...@@ -9,7 +14,6 @@ Changelog
* #440 null added as resource to contact [jcbrand] * #440 null added as resource to contact [jcbrand]
* Add new event serviceDiscovered [jcbrand] * Add new event serviceDiscovered [jcbrand]
* Add a new configuration setting `muc_history_max_stanzas <https://conversejs.org/docs/html/configuration.html#muc_history_max_stanzas>`_. [jcbrand] * Add a new configuration setting `muc_history_max_stanzas <https://conversejs.org/docs/html/configuration.html#muc_history_max_stanzas>`_. [jcbrand]
* #462 Fix MUC rooms with names containing special characters not working [1st8]
0.9.4 (2015-07-04) 0.9.4 (2015-07-04)
------------------ ------------------
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
} (this, function ($, mock, test_utils, utils) { } (this, function ($, mock, test_utils, utils) {
var $pres = converse_api.env.$pres; var $pres = converse_api.env.$pres;
var $msg = converse_api.env.$msg; var $msg = converse_api.env.$msg;
var Strophe = converse_api.env.Strophe;
return describe("ChatRooms", $.proxy(function (mock, test_utils) { return describe("ChatRooms", $.proxy(function (mock, test_utils) {
describe("A Chat Room", $.proxy(function () { describe("A Chat Room", $.proxy(function () {
...@@ -21,6 +22,13 @@ ...@@ -21,6 +22,13 @@
}); });
}); });
it("can have spaces and special characters in its name", function () {
test_utils.openChatRoom('lounge & leisure', 'localhost', 'dummy');
var view = converse.chatboxviews.get(
Strophe.escapeNode('lounge & leisure')+'@localhost');
expect(view instanceof converse.ChatRoomView).toBe(true);
});
it("shows users currently present in the room", $.proxy(function () { it("shows users currently present in the room", $.proxy(function () {
test_utils.openChatRoom('lounge', 'localhost', 'dummy'); test_utils.openChatRoom('lounge', 'localhost', 'dummy');
var name; var name;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment