From 4bad58b407bfd3a572ae9db1b6122eac5a806bf1 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Sun, 16 Oct 2016 14:54:59 -0700 Subject: [PATCH] Remove outdated test --- spec/runtime/parser_spec.cc | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/spec/runtime/parser_spec.cc b/spec/runtime/parser_spec.cc index 0e6bb97b..174b4110 100644 --- a/spec/runtime/parser_spec.cc +++ b/spec/runtime/parser_spec.cc @@ -340,22 +340,6 @@ describe("Parser", [&]() { }); }); - describe("with non-ascii characters", [&]() { - it("inserts the text according to the UTF8 character index", [&]() { - // 'αβδ' + '1' - set_text("'\u03b1\u03b2\u03b4' + '1';"); - - assert_root_node( - "(program (expression_statement (math_op (string) (string))))"); - - // 'αβδ' + 'ψ1' - insert_text(strlen("'abd' + '"), "\u03c8"); - - assert_root_node( - "(program (expression_statement (math_op (string) (string))))"); - }); - }); - describe("into a node containing a extra token", [&]() { it("updates the parse tree", [&]() { set_text("123 *\n"