(self)
| 27 | ) |
| 28 | |
| 29 | def test_link_root(self): |
| 30 | expected_link_root = join( |
| 31 | self.recipe.get_build_dir(self.arch.arch), 'android-build', |
| 32 | ) |
| 33 | self.assertEqual( |
| 34 | expected_link_root, self.recipe.link_root(self.arch.arch) |
| 35 | ) |
| 36 | |
| 37 | @mock.patch("pythonforandroid.recipes.python3.subprocess.call") |
| 38 | def test_compile_python_files(self, mock_subprocess): |
nothing calls this directly
no test coverage detected