[pitivi] Changed static assignment of alignment_editor._hovered box to use a mock to simulate the event from
- From: Alexandru Băluț <alexbalut src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] Changed static assignment of alignment_editor._hovered box to use a mock to simulate the event from
- Date: Sun, 10 May 2020 19:32:24 +0000 (UTC)
commit 6df385dc7cd0f3203a6e8c7ea0a919493e52692f
Author: Jackson Eickhoff <jacksoneick gmail com>
Date: Sun May 10 10:07:55 2020 -0500
Changed static assignment of alignment_editor._hovered box to use a mock to simulate the event from .
tests/test_clipproperties.py | 31 ++++++++++++++-----------------
1 file changed, 14 insertions(+), 17 deletions(-)
---
diff --git a/tests/test_clipproperties.py b/tests/test_clipproperties.py
index f62c92e5..d51b0a81 100644
--- a/tests/test_clipproperties.py
+++ b/tests/test_clipproperties.py
@@ -391,31 +391,28 @@ class ClipPropertiesTest(BaseTestUndoTimeline, BaseTestTimeline):
source = transformation_box.source
self.assertIsNotNone(source)
- x = source.get_child_property("posx").value
- y = source.get_child_property("posy").value
+ height = source.get_child_property("height").value
+ width = source.get_child_property("width").value
- self.assertEqual(x, 0)
- self.assertEqual(x, 0)
+ self.assertEqual(source.get_child_property("posx").value, 0)
+ self.assertEqual(source.get_child_property("posy").value, 0)
alignment_editor = transformation_box.alignment_editor
- alignment_editor._hovered_box = [0, 0]
+ event = mock.MagicMock()
+ event.x = 0
+ event.y = 0
+ alignment_editor._motion_notify_event_cb(None, event)
alignment_editor._button_release_event_cb(alignment_editor, None)
- x = source.get_child_property("posx").value
- y = source.get_child_property("posy").value
- self.assertEqual(x, -source.get_child_property("width").value)
- self.assertEqual(y, -source.get_child_property("height").value)
+ self.assertEqual(source.get_child_property("posx").value, -width)
+ self.assertEqual(source.get_child_property("posy").value, -height)
self.action_log.undo()
- x = source.get_child_property("posx").value
- y = source.get_child_property("posy").value
- self.assertEqual(x, 0)
- self.assertEqual(y, 0)
+ self.assertEqual(source.get_child_property("posx").value, 0)
+ self.assertEqual(source.get_child_property("posy").value, 0)
self.action_log.redo()
- x = source.get_child_property("posx").value
- y = source.get_child_property("posy").value
- self.assertEqual(x, -source.get_child_property("width").value)
- self.assertEqual(y, -source.get_child_property("height").value)
+ self.assertEqual(source.get_child_property("posx").value, -width)
+ self.assertEqual(source.get_child_property("posy").value, -height)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]