freecad-cam/Mod/CAM/CAMTests/FilePathTestUtils.py
2026-02-01 01:59:24 +01:00

7 lines
195 B
Python

import os
from unittest import TestCase
def assertFilePathsEqual(self: TestCase, path1: os.PathLike, path2: os.PathLike):
self.assertEqual(os.path.realpath(path1), os.path.realpath(path2))