aboutsummaryrefslogtreecommitdiff
path: root/tests/testcases/basic.py
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-09-19 17:46:20 +1000
committerallusive-dev <[email protected]>2023-09-19 17:46:20 +1000
commit5650d887357bf2a3fac8c5fd4f467bf8795b5fc4 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /tests/testcases/basic.py
parentUpdate picom.sample.conf (diff)
downloadcompfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.tar.xz
compfy-5650d887357bf2a3fac8c5fd4f467bf8795b5fc4.zip
reset
Diffstat (limited to 'tests/testcases/basic.py')
-rw-r--r--tests/testcases/basic.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/testcases/basic.py b/tests/testcases/basic.py
deleted file mode 100644
index d0ecaf1..0000000
--- a/tests/testcases/basic.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-
-import xcffib.xproto as xproto
-import xcffib
-
-conn = xcffib.connect()
-setup = conn.get_setup()
-root = setup.roots[0].root
-visual = setup.roots[0].root_visual
-depth = setup.roots[0].root_depth
-
-wid = conn.generate_id()
-conn.core.CreateWindowChecked(depth, wid, root, 0, 0, 100, 100, 0, xproto.WindowClass.InputOutput, visual, 0, []).check()
-conn.core.MapWindowChecked(wid).check()
-conn.core.UnmapWindowChecked(wid).check()
-conn.core.DestroyWindowChecked(wid).check()
-
-