retrie-0.1.0.0: tests/Dependent.hs
-- Copyright (c) Facebook, Inc. and its affiliates.
--
-- This source code is licensed under the MIT license found in the
-- LICENSE file in the root directory of this source tree.
--
{-# LANGUAGE RecordWildCards #-}
module Dependent where
import Options.Applicative
import Test.HUnit
import Golden
import Retrie
import Retrie.Options
dependentStmtTest :: FilePath -> Parser ProtoOptions -> Verbosity -> Test
dependentStmtTest rtDir p rtVerbosity =
TestLabel "dependent stmt" $ TestCase $
runTest p RetrieTest
{ rtName = "dependent stmt"
, rtTest = "DependentStmt.custom"
, rtRetrie = \opts -> do
rrs <- parseRewrites opts [ Adhoc "forall x. foo x = baz x" ]
stmt <- parseStmt "y <- bar 54"
let
rr = toURewrite $
Query emptyQs stmt
(Template stmt mempty (Just rrs), defaultTransformer)
return $ apply [rr]
, ..
}