summaryrefslogtreecommitdiff
path: root/sys/lib/python/test/test_netrc.py
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@localhost>2011-05-04 05:41:33 +0000
committercinap_lenrek <cinap_lenrek@localhost>2011-05-04 05:41:33 +0000
commitb8436b026a90291ba26afa4f7a2700720b03339f (patch)
tree3098aede87640c80567ecb31022e0404a8b5ec75 /sys/lib/python/test/test_netrc.py
parent6c1b42188259a6f1636cd15a9570b18af03e2dbb (diff)
remove python test cases
Diffstat (limited to 'sys/lib/python/test/test_netrc.py')
-rw-r--r--sys/lib/python/test/test_netrc.py48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys/lib/python/test/test_netrc.py b/sys/lib/python/test/test_netrc.py
deleted file mode 100644
index b536255ab..000000000
--- a/sys/lib/python/test/test_netrc.py
+++ /dev/null
@@ -1,48 +0,0 @@
-
-import netrc, os, unittest, sys
-from test import test_support
-
-TEST_NETRC = """
-machine foo login log1 password pass1 account acct1
-
-macdef macro1
-line1
-line2
-
-macdef macro2
-line3
-line4
-
-default login log2 password pass2
-
-"""
-
-temp_filename = test_support.TESTFN
-
-class NetrcTestCase(unittest.TestCase):
-
- def setUp (self):
- mode = 'w'
- if sys.platform not in ['cygwin']:
- mode += 't'
- fp = open(temp_filename, mode)
- fp.write(TEST_NETRC)
- fp.close()
- self.netrc = netrc.netrc(temp_filename)
-
- def tearDown (self):
- del self.netrc
- os.unlink(temp_filename)
-
- def test_case_1(self):
- self.assert_(self.netrc.macros == {'macro1':['line1\n', 'line2\n'],
- 'macro2':['line3\n', 'line4\n']}
- )
- self.assert_(self.netrc.hosts['foo'] == ('log1', 'acct1', 'pass1'))
- self.assert_(self.netrc.hosts['default'] == ('log2', None, 'pass2'))
-
-def test_main():
- test_support.run_unittest(NetrcTestCase)
-
-if __name__ == "__main__":
- test_main()