blob: d8f6cdc66947262eb255c6d7a6be47359cb655a3 [file] [log] [blame]
Tor Norbyea3e39ab2014-04-10 10:54:17 -07001__author__ = 'ktisha'
2
3import unittest
4
5class A:
6 def __init__(self):
7 self._x = 1
8
9 def _foo(self):
10 pass
11
12
13class TestA(unittest.TestCase):
14 def testA(self):
15 a = A()
16 a._foo()
17 print(a._x)