##// END OF EJS Templates
test fix to try path for cwd
Marin Gilles -
Show More
@@ -180,6 +180,7 b' def test_LSString():'
180 lss = text.LSString("abc\ndef")
180 lss = text.LSString("abc\ndef")
181 nt.assert_equal(lss.l, ['abc', 'def'])
181 nt.assert_equal(lss.l, ['abc', 'def'])
182 nt.assert_equal(lss.s, 'abc def')
182 nt.assert_equal(lss.s, 'abc def')
183 lss = text.LSString(os.getcwd())
183 nt.assert_is_instance(lss.p[0], path.path)
184 nt.assert_is_instance(lss.p[0], path.path)
184
185
185 def test_SList():
186 def test_SList():
General Comments 0
You need to be logged in to leave comments. Login now