From 1c1c3abb80bf3ec2ad0e845aefa7c1a811edf939 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 2 Feb 2016 13:35:34 +0100 Subject: [PATCH] Tests: add session.vader --- autoload/startify.vim | 2 +- test/feature/buffer.vader | 2 +- test/feature/{mappings.vader => mapping.vader} | 0 test/feature/session.vader | 18 ++++++++++++++++++ test/include/testfile.txt | 2 ++ test/vader.vader | 3 ++- test/vimrc | 3 +++ 7 files changed, 27 insertions(+), 3 deletions(-) rename test/feature/{mappings.vader => mapping.vader} (100%) create mode 100644 test/feature/session.vader create mode 100644 test/include/testfile.txt diff --git a/autoload/startify.vim b/autoload/startify.vim index a660f46..6de3b47 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -756,7 +756,7 @@ endfunction function! s:create_last_session_link(spath) if !has('win32') && a:spath !~# '__LAST__$' let cmd = printf('ln -sf %s %s', - \ shellescape(a:spath), + \ shellescape(fnamemodify(a:spath, ':t')), \ shellescape(s:session_dir .'/__LAST__')) silent! call system(cmd) if v:shell_error diff --git a/test/feature/buffer.vader b/test/feature/buffer.vader index 91a7b34..b285df7 100644 --- a/test/feature/buffer.vader +++ b/test/feature/buffer.vader @@ -1,7 +1,7 @@ Before: Startify -Execute (Check set options): +Execute (Check buffer options): AssertEqual 'startify', &filetype AssertEqual 'wipe', &bufhidden AssertEqual 'nofile', &buftype diff --git a/test/feature/mappings.vader b/test/feature/mapping.vader similarity index 100% rename from test/feature/mappings.vader rename to test/feature/mapping.vader diff --git a/test/feature/session.vader b/test/feature/session.vader new file mode 100644 index 0000000..16f2aa8 --- /dev/null +++ b/test/feature/session.vader @@ -0,0 +1,18 @@ +Execute (Session: :SSave foo): + edit include/testfile.txt + SSave foo + SClose +Do: + e +Expect: + +Execute (Session: :SLoad foo): + silent SLoad foo +Expect: + This is just a simple test file. + Foo, bar, quux. + +Execute (Session: :SDelete foo): + Assert 1 == filereadable(g:startify_session_dir.'/foo') + SDelete foo + Assert 0 == filereadable(g:startify_session_dir.'/foo') diff --git a/test/include/testfile.txt b/test/include/testfile.txt new file mode 100644 index 0000000..01ad94a --- /dev/null +++ b/test/include/testfile.txt @@ -0,0 +1,2 @@ +This is just a simple test file. +Foo, bar, quux. diff --git a/test/vader.vader b/test/vader.vader index 61a536a..a1fbe14 100644 --- a/test/vader.vader +++ b/test/vader.vader @@ -2,4 +2,5 @@ Execute (:Startify command available): Assert 2 == exists(':Startify') Include: feature/buffer.vader -Include: feature/mappings.vader +Include: feature/mapping.vader +Include: feature/session.vader diff --git a/test/vimrc b/test/vimrc index 081821f..e7aaf48 100644 --- a/test/vimrc +++ b/test/vimrc @@ -4,3 +4,6 @@ set runtimepath+=.. filetype plugin on syntax enable set hidden +set sessionoptions-=tabpages +let g:startify_session_dir = 'include' +let g:startify_relative_path = 1