Skip to content

Commit

Permalink
add first test
Browse files Browse the repository at this point in the history
  • Loading branch information
constverum committed Nov 5, 2017
1 parent cae2326 commit 87df9fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Empty file added tests/__init__.py
Empty file.
Empty file added tests/conftest.py
Empty file.
9 changes: 9 additions & 0 deletions tests/test_basics.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from quantdom import MainWidget


def test_init(qtbot):
widget = MainWidget()
widget.show()
qtbot.addWidget(widget)

assert widget.isVisible()

0 comments on commit 87df9fb

Please sign in to comment.