Update TestUtils.py

tests shouldn't be making symlinks to system dirs, also fixes unit test report on OS X.
This commit is contained in:
Michael DeHaan 2013-09-28 11:01:21 -04:00
parent 05b3aaa39b
commit ef28d62846

View file

@ -15,12 +15,6 @@ class TestUtils(unittest.TestCase):
#####################################
### varReplace function tests
def test_unfrackpath(self):
os.symlink("/etc", "/tmp/etc")
a = ansible.utils.unfrackpath('$HOME/../../tmp/etc/')
assert a == '/etc'
os.unlink('/tmp/etc')
def test_varReplace_simple(self):
template = 'hello $who'
vars = {