File: PullRequestReviewsSpec.hs

package info (click to toggle)
haskell-github 0.29-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 944 kB
  • sloc: haskell: 7,744; makefile: 3
file content (32 lines) | stat: -rw-r--r-- 1,038 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{-# LANGUAGE OverloadedStrings #-}
module GitHub.PullRequestReviewsSpec where

import qualified GitHub
import           GitHub.Data (IssueNumber (IssueNumber))

import Prelude ()
import Prelude.Compat

import Data.Either.Compat (isRight)
import Data.Foldable      (for_)
import Data.String        (fromString)
import System.Environment (lookupEnv)
import Test.Hspec         (Spec, describe, it, pendingWith, shouldSatisfy)

withAuth :: (GitHub.Auth -> IO ()) -> IO ()
withAuth action = do
    mtoken <- lookupEnv "GITHUB_TOKEN"
    case mtoken of
        Nothing    -> pendingWith "no GITHUB_TOKEN"
        Just token -> action (GitHub.OAuth $ fromString token)

spec :: Spec
spec = do
    describe "pullRequestReviewsR" $ do
        it "works" $ withAuth $ \auth -> for_ prs $ \(owner, repo, prid) -> do
            cs <- GitHub.executeRequest auth $
                GitHub.pullRequestReviewsR owner repo prid GitHub.FetchAll
            cs `shouldSatisfy` isRight
  where
    prs =
      [("haskell-github", "github", IssueNumber 268)]