Add some the scaffolding for testing

As I attempt to habituate TDD, I should have some examples of tests to minimize
all friction preventing me from testing.
This commit is contained in:
William Carroll 2020-08-05 21:37:08 +01:00
parent c4299558a7
commit 40753e9f3b
2 changed files with 20 additions and 0 deletions

View file

@ -3,6 +3,7 @@ let
in pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
hspec
optparse-applicative
]))
];