Convert test_int
This commit is contained in:
parent
086f12600c
commit
ff75d18e62
@ -64,3 +64,10 @@ def test_int_noklass():
|
|||||||
|
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
debug.qflags_key(Qt, 42)
|
debug.qflags_key(Qt, 42)
|
||||||
|
|
||||||
|
@fixme
|
||||||
|
def test_int():
|
||||||
|
"""Test passing an int with explicit klass given."""
|
||||||
|
|
||||||
|
flags = debug.qflags_key(Qt, 0x0021, klass=Qt.Alignment)
|
||||||
|
assert flags == 'AlignLeft|AlignTop'
|
||||||
|
@ -37,12 +37,6 @@ class QFlagsKeyTests(unittest.TestCase):
|
|||||||
|
|
||||||
# https://github.com/The-Compiler/qutebrowser/issues/42
|
# https://github.com/The-Compiler/qutebrowser/issues/42
|
||||||
|
|
||||||
@unittest.skip('FIXME')
|
|
||||||
def test_int(self):
|
|
||||||
"""Test passing an int with explicit klass given."""
|
|
||||||
flags = debug.qflags_key(Qt, 0x0021, klass=Qt.Alignment)
|
|
||||||
self.assertEqual(flags, 'AlignLeft|AlignTop')
|
|
||||||
|
|
||||||
def test_unknown(self):
|
def test_unknown(self):
|
||||||
"""Test passing an unknown value."""
|
"""Test passing an unknown value."""
|
||||||
flags = debug.qflags_key(Qt, 0x1100, klass=Qt.Alignment)
|
flags = debug.qflags_key(Qt, 0x1100, klass=Qt.Alignment)
|
||||||
|
Loading…
Reference in New Issue
Block a user