Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added QWidget.close to tests
  • Loading branch information
arturadib committed Apr 9, 2012
1 parent 6c838fd commit 624f645
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/qwidget.js
Expand Up @@ -53,6 +53,8 @@ var app = new qt.QApplication();
assert.equal(widget.hasMouseTracking(), false);
widget.setMouseTracking(true);
assert.equal(widget.hasMouseTracking(), true);

widget.close();
}

{
Expand All @@ -78,6 +80,8 @@ var app = new qt.QApplication();
widget2.move(12, 34);
assert.equal(widget2.x(), 12);
assert.equal(widget2.y(), 34);

widget.close();
}

// Events
Expand Down

0 comments on commit 624f645

Please sign in to comment.