(self)
| 135 | TEST_INTERNAL_C_API = True |
| 136 | |
| 137 | def test_build(self): |
| 138 | kwargs = {} |
| 139 | if sys.platform == 'darwin': |
| 140 | # Old Apple clang++ default C++ std is gnu++98 |
| 141 | kwargs['std'] = 'c++11' |
| 142 | self.check_build('_testcppext_internal', **kwargs) |
| 143 | |
| 144 | |
| 145 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected