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
|
|
|
# --
|
|
|
|
{-# LANGUAGE ApplicativeDo #-}
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
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))))`} where
|
|
|
|
--------------------------------------------------------------------------------
|
2018-08-31 19:31:14 +02:00
|
|
|
import Test.Prelude
|
2018-03-30 00:10:07 +02:00
|
|
|
import qualified Hedgehog.Gen as Gen
|
|
|
|
import qualified Hedgehog.Range as Range
|
|
|
|
--------------------------------------------------------------------------------
|
2018-08-31 19:31:14 +02:00
|
|
|
import ${1:$(s-chop-suffix "Test" yas-text)}
|
2018-03-30 00:10:07 +02:00
|
|
|
--------------------------------------------------------------------------------
|