mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-01-16 06:08:29 +01:00
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.
16 lines
231 B
Haskell
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
|