Tests: add session.vader

This commit is contained in:
Marco Hinz 2016-02-02 13:35:34 +01:00
parent 9e296c31d9
commit 1c1c3abb80
7 changed files with 27 additions and 3 deletions

View file

@ -756,7 +756,7 @@ endfunction
function! s:create_last_session_link(spath) function! s:create_last_session_link(spath)
if !has('win32') && a:spath !~# '__LAST__$' if !has('win32') && a:spath !~# '__LAST__$'
let cmd = printf('ln -sf %s %s', let cmd = printf('ln -sf %s %s',
\ shellescape(a:spath), \ shellescape(fnamemodify(a:spath, ':t')),
\ shellescape(s:session_dir .'/__LAST__')) \ shellescape(s:session_dir .'/__LAST__'))
silent! call system(cmd) silent! call system(cmd)
if v:shell_error if v:shell_error

View file

@ -1,7 +1,7 @@
Before: Before:
Startify Startify
Execute (Check set options): Execute (Check buffer options):
AssertEqual 'startify', &filetype AssertEqual 'startify', &filetype
AssertEqual 'wipe', &bufhidden AssertEqual 'wipe', &bufhidden
AssertEqual 'nofile', &buftype AssertEqual 'nofile', &buftype

View file

@ -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')

View file

@ -0,0 +1,2 @@
This is just a simple test file.
Foo, bar, quux.

View file

@ -2,4 +2,5 @@ Execute (:Startify command available):
Assert 2 == exists(':Startify') Assert 2 == exists(':Startify')
Include: feature/buffer.vader Include: feature/buffer.vader
Include: feature/mappings.vader Include: feature/mapping.vader
Include: feature/session.vader

View file

@ -4,3 +4,6 @@ set runtimepath+=..
filetype plugin on filetype plugin on
syntax enable syntax enable
set hidden set hidden
set sessionoptions-=tabpages
let g:startify_session_dir = 'include'
let g:startify_relative_path = 1