From a8bf34ab7bf5c855e4107bbacfde9b04d5b0692e Mon Sep 17 00:00:00 2001 From: HitBlast Date: Thu, 8 Aug 2024 13:54:24 +0600 Subject: [PATCH] remove test file --- test.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index 7d4b561..0000000 --- a/test.py +++ /dev/null @@ -1,13 +0,0 @@ -from avro import parse, to_bijoy, to_unicode - -demo_text = parse("amar sOnar bangla") -print(demo_text) - -bijoy = to_bijoy(demo_text) -print(bijoy) - -unicode = to_unicode(bijoy) -print(unicode) - -if unicode == demo_text: - print("Success!")