Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / functional_tests / doc_tests / test_selector_plugin / support / tests / strings / cat.py
1 import testlib
2 from mypackage import strings
3
4 class StringsCat(testlib.Base):
5
6     def test_cat(self):
7         self.assertEqual(strings.cat('one', 'two'), 'onetwo')
8
9
10 def test_helper_function():
11     raise Exception(
12         "This test helper function should not be collected")