From 42b7d3bcf3b2f3c687afd0bf98bb2b34ff8f4adb Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Fri, 14 Apr 2017 23:05:32 +0800 Subject: [PATCH] Remove vim file in test --- test/api/logger.vim | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 test/api/logger.vim diff --git a/test/api/logger.vim b/test/api/logger.vim deleted file mode 100644 index 623ac7a5c..000000000 --- a/test/api/logger.vim +++ /dev/null @@ -1,21 +0,0 @@ -let log = SpaceVim#api#import('logger') -call log.set_name('TestLog') -" log.name == 'TestLog' -call log.info('info test') -call log.warn('info test') -call log.error('info test') -" len(log.temp) == 3 -call log.set_level(2) -call log.info('info test') -call log.warn('info test') -call log.error('info test') -" len(log.temp) == 5 -call log.set_level(3) -call log.info('info test') -call log.warn('info test') -call log.error('info test') -" len(log.temp) == 6 -" len(split(log.view(1), "\n")) == 7 -" len(split(log.view(2), "\n")) == 6 -" len(split(log.view(3), "\n")) == 4 -