summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--XMonad/Layout.hs11
-rw-r--r--tests/Properties.hs8
2 files changed, 11 insertions, 8 deletions
diff --git a/XMonad/Layout.hs b/XMonad/Layout.hs
index a7f9acb..7aca43a 100644
--- a/XMonad/Layout.hs
+++ b/XMonad/Layout.hs
@@ -15,9 +15,14 @@
--
-----------------------------------------------------------------------------
-module XMonad.Layout (ChangeLayout(..), Choose, (|||), Resize(..), IncMasterN(..),
- Full(..), Tall(..), Mirror(..), mirrorRect, splitVertically,
- splitHorizontally, splitHorizontallyBy, splitVerticallyBy) where
+module XMonad.Layout (
+ ChangeLayout(..), Choose, (|||), Resize(..), IncMasterN(..),
+ Full(..), Tall(..), Mirror(..), mirrorRect, splitVertically,
+ splitHorizontally, splitHorizontallyBy, splitVerticallyBy,
+
+ tile
+
+ ) where
import XMonad.Core
diff --git a/tests/Properties.hs b/tests/Properties.hs
index 6135792..49b09fe 100644
--- a/tests/Properties.hs
+++ b/tests/Properties.hs
@@ -2,6 +2,7 @@
module Properties where
import XMonad.StackSet hiding (filter)
+import XMonad.Layout
import qualified XMonad.StackSet as S (filter)
import Debug.Trace
@@ -656,8 +657,8 @@ prop_mapLayoutInverse (x::T) = x == mapLayout pred (mapLayout succ x)
-- some properties for layouts:
-- 1 window should always be tiled fullscreen
-{-
prop_tile_fullscreen rect = tile pct rect 1 1 == [rect]
+ where pct = 1/2
-- multiple windows
prop_tile_non_overlap rect windows nmaster = noOverlaps (tile pct rect nmaster windows)
@@ -679,8 +680,6 @@ noOverlaps xs = and [ verts a `notOverlap` verts b
= (top1 < bottom2 || top2 < bottom1)
|| (right1 < left2 || right2 < left1)
--}
-
------------------------------------------------------------------------
main :: IO ()
@@ -808,10 +807,9 @@ main = do
-- renaming
-{-
,("tile 1 window fullsize", mytest prop_tile_fullscreen)
,("tiles never overlap", mytest prop_tile_non_overlap)
--}
+
]