Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
# coding=utf-8
|
|
2 |
# This file is part of Buildbot. Buildbot is free software: you can
|
|
3 |
# redistribute it and/or modify it under the terms of the GNU General Public
|
|
4 |
# License as published by the Free Software Foundation, version 2.
|
|
5 |
#
|
|
6 |
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
7 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
8 |
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
9 |
# details.
|
|
10 |
#
|
|
11 |
# You should have received a copy of the GNU General Public License along with
|
|
12 |
# this program; if not, write to the Free Software Foundation, Inc., 51
|
|
13 |
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
14 |
#
|
|
15 |
# Copyright Buildbot Team Members
|
|
16 |
|
|
17 | 4 |
try: |
18 | 4 |
from twisted.trial.unittest import SynchronousTestCase |
19 |
except ImportError: |
|
20 |
from twisted.trial.unittest import TestCase as SynchronousTestCase |
|
21 |
|
|
22 | 4 |
__all__ = ['SynchronousTestCase'] |
Read our documentation on viewing source code .