7 lines
156 B
Python
7 lines
156 B
Python
from grid.ui.pattern import Pattern
|
|
|
|
class TestPattern():
|
|
|
|
def test_position(self):
|
|
p = Pattern(500, 500)
|
|
assert len(p.childItems()) > 0 |