vim-sussify/test/feature/session.vader

19 lines
376 B
Plaintext
Raw Normal View History

2016-02-02 12:35:34 +00:00
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.
2016-02-02 13:54:58 +00:00
Execute (Session: :SDelete! foo):
2016-02-02 12:35:34 +00:00
Assert 1 == filereadable(g:startify_session_dir.'/foo')
2016-02-02 13:54:58 +00:00
SDelete! foo
2016-02-02 12:35:34 +00:00
Assert 0 == filereadable(g:startify_session_dir.'/foo')