dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

haskell.snippets (267B)


      1 snippet describe "Hspec Describe" b
      2 describe "${1:function name}" $ do
      3   it "${2:what it does}" $ do
      4     ${3:{call}} \`shouldBe\` ${4:{result}}
      5   $0
      6 endsnippet
      7 snippet it "Hspec It" b
      8 it "${1:what it does}" $ do
      9   ${2:{call}} \`shouldBe\` ${3:{result}}
     10 $0
     11 endsnippet