mirror of
https://github.com/mattn/emmet-vim.git
synced 2026-03-25 05:48:06 +08:00
- Add .themisrc to set up runtimepath for test helpers - Add test helper in test/autoload/themis/helper/emmet.vim - Add test files: html, css, haml, slim, others (xsl/xsd/mustache/scss/jade/pug/jsx) - Update Makefile to use vim-themis (old target preserved as test-old) - All 181 test cases from unittest.vim are covered
19 lines
394 B
Makefile
19 lines
394 B
Makefile
all : emmet-vim.zip
|
|
|
|
remove-zip:
|
|
-rm doc/tags
|
|
-rm emmet-vim.zip
|
|
|
|
emmet-vim.zip: remove-zip
|
|
zip -r emmet-vim.zip autoload plugin doc
|
|
|
|
release: emmet-vim.zip
|
|
vimup update-script emmet.vim
|
|
|
|
test:
|
|
@../vim-themis/bin/themis --runtimepath . test/
|
|
|
|
test-old:
|
|
@-rm -f test.log 2> /dev/null
|
|
@vim -N -c "let &rtp .= ',' . getcwd()" -c "so unittest.vim" -c EmmetUnitTest! || cat test.log || exit 1
|