this repo has no description
at trunk 19 lines 456 B view raw
1// Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) 2#include "Python.h" 3#include "gtest/gtest.h" 4 5#include "capi-fixture.h" 6#include "capi-testing.h" 7 8namespace py { 9namespace testing { 10 11using GetCompilerExtensionApiTest = ExtensionApi; 12 13TEST_F(GetCompilerExtensionApiTest, GetCompilerReturnsNonnullString) { 14 const char* compiler = Py_GetCompiler(); 15 EXPECT_NE(compiler, nullptr); 16} 17 18} // namespace testing 19} // namespace py