mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-14 19:47:56 +03:00
14 lines
266 B
Haskell
14 lines
266 B
Haskell
|
|
module Util where
|
|
|
|
import Test.Tasty.QuickCheck
|
|
import Data.Text.Arbitrary
|
|
|
|
import System.Nix.Store.Remote.Util
|
|
|
|
prop_TextToBSLRoundtrip x =
|
|
bslToText (textToBSL x) === x
|
|
|
|
prop_TextToBSRoundtrip x =
|
|
bsToText (textToBS x) === x
|