tests: Test placement composition

This commit is contained in:
Emmanuel Lepage Vallee 2016-04-16 05:56:41 -04:00
parent bfc8f35fb9
commit 798729ff11
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
screen[1]._resize {width = 128, height = 96} --DOC_HIDE
local awful = {placement = require("awful.placement")} --DOC_HIDE
local c = client.gen_fake {x = 45, y = 35, width=40, height=30} --DOC_HIDE
local f = (awful.placement.right + awful.placement.left)
f(client.focus)
assert(c.x == 0 and c.y==screen[1].geometry.height/2-30/2-c.border_width--DOC_HIDE
and c.width==40 and c.height==30)--DOC_HIDE