blob: 0d067c1fc17d38124cf2b6c5004c5a6d9f5c8942 (
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], '3');
}
}
|