diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2011-10-26 13:50:50 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2011-10-26 13:50:50 (GMT) |
| commit | e46ef289e142982d7bd592faa7b0f85470364c01 (patch) | |
| tree | cda253e03788f7db0a7cdcd05662f66b4455e298 /src/python/stdlib/test/test_netrc.py | |
| parent | d0d0d62bbcbb5c3417f8cba419c83bac192ea985 (diff) | |
| download | powder-e46ef289e142982d7bd592faa7b0f85470364c01.zip powder-e46ef289e142982d7bd592faa7b0f85470364c01.tar.gz | |
Remove Python console stuff
Diffstat (limited to 'src/python/stdlib/test/test_netrc.py')
| -rw-r--r-- | src/python/stdlib/test/test_netrc.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/python/stdlib/test/test_netrc.py b/src/python/stdlib/test/test_netrc.py deleted file mode 100644 index 50afe76..0000000 --- a/src/python/stdlib/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.assertTrue(self.netrc.macros == {'macro1':['line1\n', 'line2\n'], - 'macro2':['line3\n', 'line4\n']} - ) - self.assertTrue(self.netrc.hosts['foo'] == ('log1', 'acct1', 'pass1')) - self.assertTrue(self.netrc.hosts['default'] == ('log2', None, 'pass2')) - -def test_main(): - test_support.run_unittest(NetrcTestCase) - -if __name__ == "__main__": - test_main() |
