-- Copyright (C) 2017 Red Hat, Inc. -- -- This library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- -- This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- -- You should have received a copy of the GNU Lesser General Public -- License along with this library; if not, see . -- module BDCS.RPM.SourcesSpec(spec) where import Codec.RPM.Tags(Tag(..)) import Control.Exception(evaluate) import Test.Hspec import BDCS.Exceptions(DBException(..)) import BDCS.RPM.Sources(mkSource) import Utils(fakeKey) spec :: Spec spec = describe "BDCS.RPM.Sources Tests" $ do it "No License raises" $ evaluate (mkSource [ Version "" ] fakeKey) `shouldThrow` (== MissingRPMTag "License") it "No Version raises" $ evaluate (mkSource [ License "" ] fakeKey) `shouldThrow` (== MissingRPMTag "Version")