def test_different_path(self): c = CMake('d', pj('path', 'c'), []) assert(pj('path', 'c') == c.path())
def test_different_path(self): c = CMake('d', pj('path', 'c')) assert('d' == c) assert(pj('path', 'c') == c.path())
def test_path(self): c = CMake('c', pj('path', 'c'), []) assert(pj('path', 'c') == c.path())
def test_path(self): c = CMake('c', pj('path', 'c')) assert('c' == c) assert(pj('path', 'c') == c.path())