implemented rendering of left side of abacus widget
This commit is contained in:
100
test/Abacus/App/Widgets/InternalSpec.hs
Normal file
100
test/Abacus/App/Widgets/InternalSpec.hs
Normal file
@@ -0,0 +1,100 @@
|
||||
{-
|
||||
|
||||
abacus
|
||||
Copyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program 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
|
||||
Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public
|
||||
License along with this program. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
-}
|
||||
|
||||
module Abacus.App.Widgets.InternalSpec (spec) where
|
||||
|
||||
import Lens.Micro.Platform ((&), (.~))
|
||||
import Test.Hspec (Spec, describe, context, it, shouldBe)
|
||||
|
||||
import Abacus.App.Types
|
||||
import Abacus.App.Widgets.Internal
|
||||
|
||||
spec :: Spec
|
||||
spec = describe "Internal" $ do
|
||||
abacusLeftSpec
|
||||
beadsSpec
|
||||
abacusRightSpec
|
||||
|
||||
abacusLeftSpec :: Spec
|
||||
abacusLeftSpec = describe "abacusLeft" $ mapM_
|
||||
( \(desc, state, expected) -> context desc $
|
||||
it ("should be " ++ show expected) $
|
||||
abacusLeft state `shouldBe` expected
|
||||
)
|
||||
[ ( "initial state", initialState, initStr )
|
||||
, ( "rung 5", r5State, r5Str )
|
||||
, ( "negative", negState, nStr )
|
||||
]
|
||||
where
|
||||
initStr =
|
||||
[ " "
|
||||
, ">0"
|
||||
, " 1"
|
||||
, " 2"
|
||||
, " 3"
|
||||
, " 4"
|
||||
, " 5"
|
||||
, " 6"
|
||||
, " 7"
|
||||
, " 8"
|
||||
, " 9"
|
||||
, " "
|
||||
]
|
||||
r5Str =
|
||||
[ " "
|
||||
, " 0"
|
||||
, " 1"
|
||||
, " 2"
|
||||
, " 3"
|
||||
, " 4"
|
||||
, ">5"
|
||||
, " 6"
|
||||
, " 7"
|
||||
, " 8"
|
||||
, " 9"
|
||||
, " "
|
||||
]
|
||||
nStr =
|
||||
[ " "
|
||||
, " 0"
|
||||
, " 1"
|
||||
, " 2"
|
||||
, " 3"
|
||||
, " 4"
|
||||
, " 5"
|
||||
, " 6"
|
||||
, " 7"
|
||||
, " 8"
|
||||
, " 9"
|
||||
, " "
|
||||
]
|
||||
r5State = initialState & rungNum .~ 5
|
||||
negState = initialState & rungNum .~ (-1)
|
||||
|
||||
beadsSpec :: Spec
|
||||
beadsSpec = describe "beads" $
|
||||
return ()
|
||||
|
||||
abacusRightSpec :: Spec
|
||||
abacusRightSpec = describe "abacusRight" $
|
||||
return ()
|
||||
|
||||
--jl
|
||||
32
test/Abacus/App/WidgetsSpec.hs
Normal file
32
test/Abacus/App/WidgetsSpec.hs
Normal file
@@ -0,0 +1,32 @@
|
||||
{-
|
||||
|
||||
abacus
|
||||
Copyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program 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
|
||||
Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public
|
||||
License along with this program. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
-}
|
||||
|
||||
module Abacus.App.WidgetsSpec (spec) where
|
||||
|
||||
import Test.Hspec (Spec, describe)
|
||||
|
||||
import qualified Abacus.App.Widgets.InternalSpec as Internal
|
||||
|
||||
spec :: Spec
|
||||
spec = describe "Widgets"
|
||||
Internal.spec
|
||||
|
||||
--jl
|
||||
32
test/Abacus/AppSpec.hs
Normal file
32
test/Abacus/AppSpec.hs
Normal file
@@ -0,0 +1,32 @@
|
||||
{-
|
||||
|
||||
abacus
|
||||
Copyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program 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
|
||||
Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public
|
||||
License along with this program. If not, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
-}
|
||||
|
||||
module Abacus.AppSpec (spec) where
|
||||
|
||||
import Test.Hspec (Spec, describe)
|
||||
|
||||
import qualified Abacus.App.WidgetsSpec as Widgets
|
||||
|
||||
spec :: Spec
|
||||
spec = describe "App"
|
||||
Widgets.spec
|
||||
|
||||
--jl
|
||||
@@ -34,6 +34,8 @@ import Test.Hspec
|
||||
import Abacus
|
||||
import Abacus.Internal
|
||||
|
||||
import qualified Abacus.AppSpec as App
|
||||
|
||||
spec :: Spec
|
||||
spec = describe "Abacus" $ do
|
||||
newAbacusSpec
|
||||
@@ -44,6 +46,7 @@ spec = describe "Abacus" $ do
|
||||
rungLSpec
|
||||
resetAbacusSpec
|
||||
rungListSpec
|
||||
App.spec
|
||||
|
||||
newAbacusSpec :: Spec
|
||||
newAbacusSpec = describe "newAbacusSpec" $ mapM_
|
||||
|
||||
Reference in New Issue
Block a user