Change-Id: I6c6847fac56f0a9a1a2209792e00a3aec5e672b9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10809 Autosubmit: aspen <root@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			776 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			776 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
--------------------------------------------------------------------------------
 | 
						|
module Xanthous.Game.PromptSpec (main, test) where
 | 
						|
--------------------------------------------------------------------------------
 | 
						|
import           Test.Prelude
 | 
						|
--------------------------------------------------------------------------------
 | 
						|
import           Xanthous.Game.Prompt
 | 
						|
--------------------------------------------------------------------------------
 | 
						|
 | 
						|
main :: IO ()
 | 
						|
main = defaultMain test
 | 
						|
 | 
						|
test :: TestTree
 | 
						|
test = testGroup "Xanthous.Game.PromptSpec"
 | 
						|
  [ testGroup "mkMenuItems"
 | 
						|
    [ testCase "with duplicate items"
 | 
						|
      $ mkMenuItems @[_] [('a', MenuOption @Int "a" 1), ('a', MenuOption "a" 2)]
 | 
						|
        @?= mapFromList [('a', MenuOption "a" 1), ('b', MenuOption "a" 2)]
 | 
						|
    ]
 | 
						|
  ]
 |