nvim-nim/other/tests/vim/smoke.vader
baabelfish 17b22b6fc3 Add jump to def test
- Fix global variable initialization
- Remove broken shell escapes
2016-03-15 02:25:49 +02:00

28 lines
582 B
Text

Given nim:
echo "hello"
Do:
gg
Then:
AssertEqual "nim", &filetype
Assert exists(":NimDebug") > 0
Assert exists(":NimDefinition") > 0
Assert exists(":NimInfo") > 0
Assert exists(":NimWeb") > 0
Assert exists(":NimUsages") > 0
Assert exists(":NimUsagesProject") > 0
Assert exists(":NimRenameSymbol") > 0
Assert exists(":NimRenameSymbolProject") > 0
Assert exists(":NimDebug") > 0
Assert exists(":NimOutline") > 0
Assert exists(":NimOutlineUpdate") > 0
Given cpp:
std::cout << "hello world" << std::endl;
Do:
gg
Then:
AssertEqual "cpp", &filetype