1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00
Commit Graph

12 Commits

Author SHA1 Message Date
William Ting
1a0003d852 Fix encoding issues.
The original implementation used str.encode() on input and str.decode() on
output. However this would cause UnicodeDecodeError since certain characters
can't be encoded / decoded in ASCII.

The new solution is to use unicode() on all input strings and output UTF-8
encoded strings. This makes the assumption that the shell can handle UTF-8
strings.
2014-01-07 11:44:44 -06:00
William Ting
4bb6dfe1ca use python vs python2 2014-01-02 15:56:43 -06:00
William Ting
6f5e4dd2d1 fix helper function unit tests 2014-01-01 22:00:24 -06:00
William Ting
c4ec07784a clean up some utils tests 2014-01-01 21:53:36 -06:00
William Ting
85824098c1 modify iteration tests to explicitly work with generators 2013-12-31 19:09:51 -06:00
William Ting
b3162c917b add helper functions unit tests 2013-12-31 18:47:08 -06:00
William Ting
80d7ab660f add file system integration tests 2013-12-31 18:35:57 -06:00
William Ting
795bdcc9a7 add env vars integration tests 2013-12-31 18:02:08 -06:00
William Ting
59e494a066 add has_uppercase() test 2013-12-31 17:41:12 -06:00
William Ting
cc9b7c28cf add travis config 2013-12-31 17:37:19 -06:00
William Ting
fb1f397fee add string unit tests 2013-12-31 16:49:41 -06:00
William Ting
737ccf85c1 add iteration test cases 2013-12-31 16:33:32 -06:00