~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/Twisted-10.0.0/twisted/trial/test/sample.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""This module is used by test_loader to test the Trial test loading
 
2
functionality. Do NOT change the number of tests in this module.  Do NOT change
 
3
the names the tests in this module.
 
4
"""
 
5
 
 
6
import unittest as pyunit
 
7
from twisted.trial import unittest
 
8
 
 
9
class FooTest(unittest.TestCase):
 
10
    def test_foo(self):
 
11
        pass
 
12
 
 
13
    def test_bar(self):
 
14
        pass
 
15
 
 
16
 
 
17
class PyunitTest(pyunit.TestCase):
 
18
    def test_foo(self):
 
19
        pass
 
20
 
 
21
    def test_bar(self):
 
22
        pass
 
23
 
 
24
 
 
25
class NotATest(object):
 
26
    def test_foo(self):
 
27
        pass
 
28
 
 
29
 
 
30
class AlphabetTest(unittest.TestCase):
 
31
    def test_a(self):
 
32
        pass
 
33
 
 
34
    def test_b(self):
 
35
        pass
 
36
 
 
37
    def test_c(self):
 
38
        pass
 
39
 
 
40