def absolute_path__3(object): from_path = "/share/bin/pyspec" relative_path = "../wxform/form.xrc" result = os.path.join("/", "share", "wxform", "form.xrc") About(util.absolute_path(from_path, relative_path)).should_equal(result)
def absolute_path__1(object): from_path = r"c:\share\bin\pyspec" relative_path = r".\wxform\form.xrc" result = r"c:\share\bin\wxform\form.xrc" About(util.absolute_path(from_path, relative_path)).should_equal(result)