yesod-auth-oauth2/test/Yesod/Auth/OAuth2Spec.hs
patrick brisbin 3c24e0ff07
Add basic testing infrastructure
What sort of tests we'll be able to add is yet to be figured out, but
this at least puts a no-op, hspec-based testing target in place.
2016-01-03 10:36:52 -05:00

16 lines
231 B
Haskell

module Yesod.Auth.OAuth2Spec
( main
, spec
) where
import Test.Hspec
import Yesod.Auth.OAuth2
main :: IO ()
main = hspec spec
spec :: Spec
spec = describe "authOAuth2" $
it "works" $
True `shouldBe` True