about summary refs log tree commit diff
path: root/users/glittershark/xanthous/test/Xanthous/Entities/RawsSpec.hs
blob: 2e6f35457fc7043addeed8fad49cb02203986744 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- |

module Xanthous.Entities.RawsSpec (main, test) where

import Test.Prelude
import Xanthous.Entities.Raws

main :: IO ()
main = defaultMain test

test :: TestTree
test = testGroup "Xanthous.Entities.Raws"
  [ testGroup "raws"
    [ testCase "are all valid" $ raws `deepseq` pure ()
    ]
  ]