MCPcopy Create free account
hub / github.com/ipython/ipython / assert_inode_not_equal

Method assert_inode_not_equal

IPython/utils/tests/test_path.py:433–435  ·  view source on GitHub ↗
(self, a, b)

Source from the content-addressed store, hash-verified

431 return os.path.join(self.tempdir.name, *args)
432
433 def assert_inode_not_equal(self, a, b):
434 nt.assert_not_equal(os.stat(a).st_ino, os.stat(b).st_ino,
435 "%r and %r do reference the same indoes" %(a, b))
436
437 def assert_inode_equal(self, a, b):
438 nt.assert_equal(os.stat(a).st_ino, os.stat(b).st_ino,

Callers 1

test_no_linkMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected