tvl-depot/users/grfn/emacs.d/snippets/haskell-mode/test-module

27 lines
1.1 KiB
Text
Raw Normal View History

2018-03-30 00:10:07 +02:00
# -*- mode: snippet -*-
# name: test-module
# key: test
# expand-env: ((yas-indent-line 'fixed))
2018-03-30 00:10:07 +02:00
# --
--------------------------------------------------------------------------------
module ${1:`(if (not buffer-file-name) "Module"
(let ((name (file-name-sans-extension (buffer-file-name)))
(case-fold-search nil))
(if (cl-search "test/" name)
(replace-regexp-in-string "/" "."
(replace-regexp-in-string "^\/[^A-Z]*" ""
(car (last (split-string name "src")))))
(file-name-nondirectory name))))`} (main, test) where
2018-03-30 00:10:07 +02:00
--------------------------------------------------------------------------------
import Test.Prelude
2018-03-30 00:10:07 +02:00
--------------------------------------------------------------------------------
import ${1:$(s-chop-suffix "Spec" yas-text)}
2018-03-30 00:10:07 +02:00
--------------------------------------------------------------------------------
main :: IO ()
main = defaultMain test
test :: TestTree
test = testGroup "$1"
[ $0
]