blob: a4a2c8d9bb2d827740818529098a82e899267b3e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <contrib/libs/python/ut/lib/test.h>
#include <library/cpp/testing/unittest/registar.h>
Y_UNIT_TEST_SUITE(TestPy3Binding) {
Y_UNIT_TEST(version) {
TTestPyInvoker invoker;
UNIT_ASSERT_EQUAL(invoker.GetVersion()[0], '2');
}
}
|