2018-03-30 00:10:07 +02:00
|
|
|
# -*- mode: snippet -*-
|
|
|
|
# name: test-module
|
|
|
|
# key: test
|
2018-08-31 19:31:14 +02:00
|
|
|
# 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")))))
|
2021-06-14 05:11:14 +02:00
|
|
|
(file-name-nondirectory name))))`} (main, test) where
|
2018-03-30 00:10:07 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2018-08-31 19:31:14 +02:00
|
|
|
import Test.Prelude
|
2018-03-30 00:10:07 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2021-06-14 05:11:14 +02:00
|
|
|
import ${1:$(s-chop-suffix "Spec" yas-text)}
|
2018-03-30 00:10:07 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2021-06-14 05:11:14 +02:00
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = defaultMain test
|
|
|
|
|
|
|
|
test :: TestTree
|
|
|
|
test = testGroup "$1"
|
|
|
|
[ $0
|
|
|
|
]
|