(self)
| 73 | assert_file(self, "out/test.target.mk", "make/test.target.mk") |
| 74 | |
| 75 | def test_cmake(self) -> None: |
| 76 | rc = gyp.main(["-f", "cmake", "--depth", fixture_dir, gyp_file]) |
| 77 | assert rc == 0 |
| 78 | |
| 79 | assert_file(self, "out/Default/CMakeLists.txt", "cmake/CMakeLists.txt") |
| 80 | |
| 81 | |
| 82 | class TestGypWindows(unittest.TestCase): |
nothing calls this directly
no test coverage detected