mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-27 19:14:59 +00:00
Fix problem with parsing lists contain non-breaking spaces
Some of the time we need to treat non-breaking spaces as though they are not spaces (regexps treat them as spaces by default).
This commit is contained in:
29
editions/test/tiddlers/tests/test-utils.js
Normal file
29
editions/test/tiddlers/tests/test-utils.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/*\
|
||||
title: test-utils.js
|
||||
type: application/javascript
|
||||
tags: [[$:/tags/test-spec]]
|
||||
|
||||
Tests various utility functions.
|
||||
|
||||
\*/
|
||||
(function(){
|
||||
|
||||
/*jslint node: true, browser: true */
|
||||
/*global $tw: false */
|
||||
"use strict";
|
||||
|
||||
describe("Utility tests", function() {
|
||||
|
||||
it("should handle parsing a string array", function() {
|
||||
expect($tw.utils.parseStringArray("Tiddler8")).toEqual(["Tiddler8"]);
|
||||
expect($tw.utils.parseStringArray(" Tiddler8")).toEqual(["Tiddler8"]);
|
||||
expect($tw.utils.parseStringArray("Tiddler8 ")).toEqual(["Tiddler8"]);
|
||||
expect($tw.utils.parseStringArray("Tiddler8 two")).toEqual(["Tiddler8","two"]);
|
||||
expect($tw.utils.parseStringArray(" Tiddler8 two ")).toEqual(["Tiddler8","two"]);
|
||||
expect($tw.utils.parseStringArray(" Tidd\u00a0ler8 two ")).toEqual(["Tidd\u00a0ler8","two"]);
|
||||
expect($tw.utils.parseStringArray(" [[Tidd\u00a0ler8]] two ")).toEqual(["Tidd\u00a0ler8","two"]);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
})();
|
||||
Reference in New Issue
Block a user