Example #1
0
 def test_different_path(self):
     c = CMake('d', pj('path', 'c'), [])
     assert(pj('path', 'c') == c.path())
Example #2
0
 def test_different_path(self):
     c = CMake('d', pj('path', 'c'))
     assert('d' == c)
     assert(pj('path', 'c') == c.path())
Example #3
0
 def test_path(self):
     c = CMake('c', pj('path', 'c'), [])
     assert(pj('path', 'c') == c.path())
Example #4
0
 def test_path(self):
     c = CMake('c', pj('path', 'c'))
     assert('c' == c)
     assert(pj('path', 'c') == c.path())