Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: third_party/twisted_8_1/twisted/trial/test/sample.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/trial/test/packages.py ('k') | third_party/twisted_8_1/twisted/trial/test/scripttest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698