From 84302652a8f66d47ab0cd94ebf3f18df8bd98822 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Sun, 10 Jan 2021 11:00:14 +0900 Subject: [PATCH] move test --- test/{bindNativeMethod.krk => testBindNativeMethod.krk} | 4 +--- ...ativeMethod.krk.expect => testBindNativeMethod.krk.expect} | 0 2 files changed, 1 insertion(+), 3 deletions(-) rename test/{bindNativeMethod.krk => testBindNativeMethod.krk} (59%) rename test/{bindNativeMethod.krk.expect => testBindNativeMethod.krk.expect} (100%) diff --git a/test/bindNativeMethod.krk b/test/testBindNativeMethod.krk similarity index 59% rename from test/bindNativeMethod.krk rename to test/testBindNativeMethod.krk index ef22c31..e640216 100644 --- a/test/bindNativeMethod.krk +++ b/test/testBindNativeMethod.krk @@ -1,6 +1,4 @@ -# Strings have a syntehesized __get__ -# which returns an integer value of the byte... -# This will probably codepoint of a UTF-32 string later? +# Strings have a syntehesized __get__ so they can be indexed... print("Test"[1]) class Test: diff --git a/test/bindNativeMethod.krk.expect b/test/testBindNativeMethod.krk.expect similarity index 100% rename from test/bindNativeMethod.krk.expect rename to test/testBindNativeMethod.krk.expect