Skip to content

Commit b022e8a

Browse files
timopollmeierbjoernricks
authored andcommitted
Add missing verify_scanner tests
1 parent 32491f7 commit b022e8a

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

tests/protocols/gmpv224/entities/test_scanners.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
GmpGetScannersTestMixin,
1212
GmpGetScannerTestMixin,
1313
GmpModifyScannerTestMixin,
14+
GmpVerifyScannerTestMixin,
1415
)
1516

1617

@@ -36,3 +37,7 @@ class Gmpv224CreateScannerTestCase(GmpCreateScannerTestMixin, Gmpv224TestCase):
3637

3738
class Gmpv224ModifyScannerTestCase(GmpModifyScannerTestMixin, Gmpv224TestCase):
3839
pass
40+
41+
42+
class Gmpv224VerifyScannerTestCase(GmpVerifyScannerTestMixin, Gmpv224TestCase):
43+
pass

tests/protocols/gmpv225/entities/test_scanners.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
GmpGetScannersTestMixin,
1111
GmpGetScannerTestMixin,
1212
GmpModifyScannerTestMixin,
13+
GmpVerifyScannerTestMixin,
1314
)
1415
from ...gmpv225 import GMPTestCase
1516

@@ -36,3 +37,7 @@ class Gmpv225CreateScannerTestCase(GmpCreateScannerTestMixin, GMPTestCase):
3637

3738
class Gmpv225ModifyScannerTestCase(GmpModifyScannerTestMixin, GMPTestCase):
3839
pass
40+
41+
42+
class Gmpv225VerifyScannerTestCase(GmpVerifyScannerTestMixin, GMPTestCase):
43+
pass

tests/protocols/gmpv226/entities/test_scanners.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
GmpGetScannersTestMixin,
1111
GmpGetScannerTestMixin,
1212
GmpModifyScannerTestMixin,
13+
GmpVerifyScannerTestMixin,
1314
)
1415
from tests.protocols.gmpv226 import GMPTestCase
1516

@@ -36,3 +37,7 @@ class GMPCreateScannerTestCase(GmpCreateScannerTestMixin, GMPTestCase):
3637

3738
class GMPModifyScannerTestCase(GmpModifyScannerTestMixin, GMPTestCase):
3839
pass
40+
41+
42+
class GMPVerifyScannerTestCase(GmpVerifyScannerTestMixin, GMPTestCase):
43+
pass

tests/protocols/gmpv227/entities/test_scanners.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
#
33
# SPDX-License-Identifier: GPL-3.0-or-later
44
#
5-
6-
5+
from tests.protocols.gmpv224.entities.scanners import GmpVerifyScannerTestMixin
76
from tests.protocols.gmpv227 import GMPTestCase
87
from tests.protocols.gmpv227.entities.scanners import (
98
GmpCloneScannerTestMixin,
@@ -37,3 +36,7 @@ class GMPCreateScannerTestCase(GmpCreateScannerTestMixin, GMPTestCase):
3736

3837
class GMPModifyScannerTestCase(GmpModifyScannerTestMixin, GMPTestCase):
3938
pass
39+
40+
41+
class GMPVerifyScannerTestCase(GmpVerifyScannerTestMixin, GMPTestCase):
42+
pass

0 commit comments

Comments
 (0)