module Spec (spec) where

import Test.Hspec

spec :: Spec
spec = do $
    describe "function" $ do
        it "should behave a certain way" $
            pendingWith "not actually a real function"
