diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-05T20·37+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-05T20·37+0100 |
commit | 40753e9f3b2df9f620c588d1d385b5ddfb9bd1bc (patch) | |
tree | 4d9783a632519a8a8b0415e0aaac2a40782a9adb /scratch/brilliant/shell.nix | |
parent | c4299558a75df8ea173c77dbc8800930dfa6519d (diff) |
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.
Diffstat (limited to 'scratch/brilliant/shell.nix')
-rw-r--r-- | scratch/brilliant/shell.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scratch/brilliant/shell.nix b/scratch/brilliant/shell.nix index 58a2e9a6a573..06fcc7979d2e 100644 --- a/scratch/brilliant/shell.nix +++ b/scratch/brilliant/shell.nix @@ -3,6 +3,7 @@ let in pkgs.mkShell { buildInputs = with pkgs; [ (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [ + hspec optparse-applicative ])) ]; |