We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dcaeb40 + a7cd046 commit 711a79bCopy full SHA for 711a79b
Orange/widgets/data/tests/test_owpurgedomain.py
@@ -1,4 +1,5 @@
1
# pylint: disable=unsubscriptable-object
2
+import unittest
3
from unittest.mock import Mock
4
5
from Orange.data import Table
@@ -30,3 +31,10 @@ def test_summary(self):
30
31
self.assertEqual(input_sum.call_args[0][0].brief, "")
32
output_sum.assert_called_once()
33
self.assertEqual(output_sum.call_args[0][0].brief, "")
34
+
35
+ def test_minimum_size(self):
36
+ pass
37
38
39
+if __name__ == "__main__":
40
+ unittest.main()
0 commit comments