summaryrefslogtreecommitdiff
path: root/test/simple/test-string-decoder.js
Commit message (Collapse)AuthorAgeFilesLines
* string_decoder: Improve test coverageFelix Geisendörfer2014-06-061-123/+82
| | | | | | The test cases are still essentially the same, but now all possible ways of writing a buffer into the decoder are tested, which has exposed a few failing scenarios that had not been discovered so far!
* string_decoder: added support for UTF-16LEkoichik2012-05-051-0/+36
| | | | Fixes #3223.
* string_decoder: add support for CESU-8koichik2012-05-051-0/+43
| | | | Fixes #3217.
* Update copyright headersRyan Dahl2011-03-141-0/+21
|
* Fix global leaksRyan Dahl2010-12-041-11/+9
|
* Fix global leaksRyan Dahl2010-12-041-2/+2
|
* GJSLint part of testsOleg Efimov2010-12-021-6/+7
|
* More changes to tests so they really work under context module loader.Herbert Vojčík2010-08-171-2/+2
| | | | Plus, getting rid of test/common.js defining things in global.
* Update tests to work with module contextsRyan Dahl2010-07-151-1/+2
|
* :%s/sys.puts/console.log/gRyan Dahl2010-06-231-1/+1
| | | | and there was much rejoicing
* Refactor: Utf8Decoder -> StringDecoderRyan Dahl2010-06-151-0/+63
Instead of just decoding Utf8, this will proxy requests to buffer.toString() for other encodings. This makes for a simpler interface.