mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
c8dc563ce1
Fixes: https://github.com/awesomeWM/awesome/issues/1672 Signed-off-by: Uli Schlachter <psychon@znc.in>
15 lines
525 B
Lua
15 lines
525 B
Lua
---------------------------------------------------------------------------
|
|
-- @author Uli Schlachter
|
|
-- @copyright 2017 Uli Schlachter
|
|
---------------------------------------------------------------------------
|
|
|
|
local rotate = require("wibox.container.rotate")
|
|
local utils = require("wibox.test_utils")
|
|
|
|
describe("wibox.container.rotate", function()
|
|
it("common interfaces", function()
|
|
utils.test_container(rotate())
|
|
end)
|
|
end)
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|