File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
- This module contains test-state related exceptions.
2
+ SeleniumBase MySQL plugin- related exceptions.
3
3
Raising one of these in a test will cause the
4
- test-state to be logged appropriately in the database
4
+ test-state to be logged appropriately in the DB
5
5
for tests that use the SeleniumBase MySQL plugin.
6
6
"""
7
7
8
8
9
9
class BlockedTest (Exception ):
10
- """Raise this to mark a test as Blocked"""
10
+ """ Raise this to mark a test as Blocked in the DB. """
11
11
pass
12
12
13
13
14
14
class SkipTest (Exception ):
15
- """Raise this to mark a test as Skipped. """
15
+ """ Raise this to mark a test as Skipped in the DB. """
16
16
pass
17
17
18
18
19
19
class DeprecatedTest (Exception ):
20
- """Raise this to mark a test as Deprecated. """
20
+ """ Raise this to mark a test as Deprecated in the DB. """
21
21
pass
You can’t perform that action at this time.
0 commit comments