1.0.0 • Published 8 years ago

sloth.elm v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

Sloth.elm

elm docs npm package

Sloth is a testing framework for Elm. It is inspired from the Node.js module Mocha.

module MyTest where


import Sloth exposing (..)
import Sloth.Assertion exposing (..)


tests =
  start
    `describe` "description"
      `it` "should pass" =>
        (1 `shouldBe` 1)
      `it` "should fail" =>
        (1 `shouldNotBe` 1)
    `end` 1

Quick start

  1. Get sloth command from npm:
$ npm i -g sloth.elm
  1. Create a folder for test files:
$ mkdir test
  1. And use elm-package to install poying/sloth.elm:
$ cd test
$ elm-package install poying/sloth.elm