K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / python2.7 / dist-packages / twisted / trial / test /
server ip : 104.21.89.46

your ip : 172.70.179.177

H O M E


Filename/usr/lib/python2.7/dist-packages/twisted/trial/test/ordertests.py
Size867
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:56
Last modified29-Jun-2013 02:25
Last accessed07-Jul-2025 15:11
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
# -*- test-case-name: twisted.trial.test.test_script -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Tests for handling of trial's --order option.
"""

from twisted.trial import unittest


class FooTest(unittest.TestCase):
"""
Used to make assertions about the order its tests will be run in.
"""

def test_first(self):
pass


def test_second(self):
pass


def test_third(self):
pass


def test_fourth(self):
pass



class BazTest(unittest.TestCase):
"""
Used to make assertions about the order the test cases in this module are
run in.
"""
def test_baz(self):
pass



class BarTest(unittest.TestCase):
"""
Used to make assertions about the order the test cases in this module are
run in.
"""
def test_bar(self):
pass