diff options
Diffstat (limited to 'vim/bundle/tlib_vim/spec/tlib/dictionary.vim')
m--------- | vim/bundle/tlib_vim | 0 | ||||
-rw-r--r-- | vim/bundle/tlib_vim/spec/tlib/dictionary.vim | 28 |
2 files changed, 0 insertions, 28 deletions
diff --git a/vim/bundle/tlib_vim b/vim/bundle/tlib_vim new file mode 160000 +Subproject 5636472e5dba1a4104376ce6bd93cc2546e0248 diff --git a/vim/bundle/tlib_vim/spec/tlib/dictionary.vim b/vim/bundle/tlib_vim/spec/tlib/dictionary.vim deleted file mode 100644 index 52439e6..0000000 --- a/vim/bundle/tlib_vim/spec/tlib/dictionary.vim +++ /dev/null @@ -1,28 +0,0 @@ -" @Author: Tom Link (mailto:micathom AT gmail com?subject=[vim]) -" @Website: https://github.com/tomtom -" @License: GPL (see http://www.gnu.org/licenses/gpl.txt) -" @Created: 2016-04-03. -" @Last Change: 2016-04-03. - -let s:save_cpo = &cpo -set cpo&vim - - - -SpecBegin 'title': 'tlib#dictionary' - - -It should handle basic test cases for tlib#dictionary#Rev properly. - -Should be equal tlib#dictionary#Rev({}), {} -Should be equal tlib#dictionary#Rev({1: 2, 3: 4}), {'2': '1', '4': '3'} -Should be equal tlib#dictionary#Rev({1: '', 3: 4}, {'empty': '*'}), {'*': '1', '4': '3'} -Should be equal tlib#dictionary#Rev({1: '', 3: 4}, {'use_string': 1}), {'''''': '1', '4': '3'} -Should be equal tlib#dictionary#Rev({1: '', 3: 4}, {'use_string': 1, 'use_eval': 1}), {'''''': 1, '4': 3} -Should be equal tlib#dictionary#Rev(tlib#dictionary#Rev({1: '', 3: 4}, {'use_string': 1}), {'use_eval': 1}), {1: '', 3: 4} -Should be equal tlib#dictionary#Rev({1: 4, 2: 4}, {'values_as_list': 1}), {'4': ['1', '2']} -Should be equal tlib#dictionary#Rev({1: 4, 2: 4}, {'values_as_list': 1, 'use_eval': 1}), {'4': [1, 2]} - - -let &cpo = s:save_cpo -unlet s:save_cpo |