Last piece of functionality to test

This commit is contained in:
Andrew Naylor 2015-03-20 09:10:35 +00:00
Родитель 91f286ac4e
Коммит f1ec67cf0f
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -151,6 +151,14 @@ describe("Notification", function() {
note.trim(note.length() - 8); note.trim(note.length() - 8);
expect(note.alert).to.equal("this is a test"); expect(note.alert).to.equal("this is a test");
}); });
it("leaves alert intact when there are no other spaces in the string", function() {
note.alert = "this_is_a_test_payload";
note.truncateAtWordEnd = true;
note.trim(note.length() - 8);
expect(note.alert).to.equal("this_is_a_test");
});
}); });
describe("alert contains escape sequences at trim point", function() { describe("alert contains escape sequences at trim point", function() {