diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-06T20·54+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-06T20·54+0100 |
commit | 1fc1087014a235a4fd153ea239ec3e5509757c17 (patch) | |
tree | b55bc7a2dcbddf7a5819633fddbbb4cd9662b865 /website/sandbox/learnpianochords/src/server/Spec.hs | |
parent | 5f52077492160195681a0a9bca806fd78ddbd6fd (diff) |
Support Google Sign-in client-side
TODO: Support Google Sign-in server-side Also: - Add Haskell to project's shell.nix - Add stubbed Main.hs and Spec.hs - Add common .ghci file
Diffstat (limited to 'website/sandbox/learnpianochords/src/server/Spec.hs')
-rw-r--r-- | website/sandbox/learnpianochords/src/server/Spec.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/website/sandbox/learnpianochords/src/server/Spec.hs b/website/sandbox/learnpianochords/src/server/Spec.hs new file mode 100644 index 000000000000..dfdd3ddebb05 --- /dev/null +++ b/website/sandbox/learnpianochords/src/server/Spec.hs @@ -0,0 +1,13 @@ +-------------------------------------------------------------------------------- +module Spec where +-------------------------------------------------------------------------------- +import Test.Hspec +import Test.QuickCheck +import Control.Exception (evaluate) +-------------------------------------------------------------------------------- + +main :: IO () +main = hspec $ do + describe "Testing" $ do + it "is setup" $ do + True == True |