Skip to content

Commit

Permalink
Testing behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed Apr 4, 2018
1 parent 7bbfc72 commit c8710c7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/fake_os_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ def setUp(self):
self.rwx = self.os.R_OK | self.os.W_OK | self.os.X_OK
self.rw = self.os.R_OK | self.os.W_OK

def test_359(self):
component1 = ""
path0 = self.make_path('alpha')
self.os.symlink(self.base_path, path0)
path0 = self.os.path.join(path0, component1)
result = self.os.readlink(path0)
print(result)

def test_chdir(self):
"""chdir should work on a directory."""
directory = self.make_path('foo')
Expand Down

0 comments on commit c8710c7

Please sign in to comment.