vcr 0.0.0 → 0.1.0
raw patch · 5 files changed
+7/−4 lines, 5 files
Files
- src/VCR.hs +1/−1
- src/VCR/Serialize.hs +1/−0
- src/WebMock.hs +1/−0
- src/WebMock/Util.hs +1/−0
- vcr.cabal +3/−3
src/VCR.hs view
@@ -1,5 +1,5 @@ -- |--- Description : Record and replay HTTP interactions+-- = Record and replay HTTP interactions -- -- This module provides functionality for recording and replaying HTTP -- interactions using a tape. A tape represents a stored log of
src/VCR/Serialize.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-}+-- | Stability: unstable module VCR.Serialize ( saveTape , loadTape
src/WebMock.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-}+-- | Stability: unstable module WebMock ( Request (..) , Response (..)
src/WebMock/Util.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE OverloadedStrings #-}+-- | Stability: unstable module WebMock.Util (requestBodyToByteString) where import Imports
vcr.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.38.0.+-- This file has been generated from package.yaml by hpack version 0.38.1. -- -- see: https://github.com/sol/hpack name: vcr-version: 0.0.0+version: 0.1.0 synopsis: Record and replay HTTP interactions category: Testing homepage: https://github.com/assertible/vcr#readme@@ -21,12 +21,12 @@ library exposed-modules:- Imports VCR VCR.Serialize WebMock WebMock.Util other-modules:+ Imports Paths_vcr hs-source-dirs: src