From 6c5fcfac92f38a2264fc202a3c2d4e756cdc54bd Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 25 Jul 2013 10:55:46 -0400 Subject: [PATCH] tests: add test_string_triple.nit Signed-off-by: Jean Privat --- tests/sav/test_string_triple.res | 14 ++++++++++++ tests/test_string_triple.nit | 44 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 tests/sav/test_string_triple.res create mode 100644 tests/test_string_triple.nit diff --git a/tests/sav/test_string_triple.res b/tests/sav/test_string_triple.res new file mode 100644 index 0000000..bf73df1 --- /dev/null +++ b/tests/sav/test_string_triple.res @@ -0,0 +1,14 @@ +ab'bc'c"c +a"b"b"c""" """ """ +c + +ab'bc''' ''' ''' +c + +111121 +1111b{b}bc{{{ {{{ {{{ 1 + + + + +*1**2***3***$4$ diff --git a/tests/test_string_triple.nit b/tests/test_string_triple.nit new file mode 100644 index 0000000..14b081e --- /dev/null +++ b/tests/test_string_triple.nit @@ -0,0 +1,44 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +var s1 = "a" + "b'b" + "c'c\"c" +print s1 + +var s2 = """a""" + """"b"b""" + """"c\""" "\"" ""\" +c +""" +print s2 + +var s3 = '''a''' + '''b'b''' + '''c\''' '\'' ''\' +c +''' +print s3 + +var s4 = "1{1}1{1}" + "{1+1}{"1"}" +print s4 + +var s5 = """1{{{1}}}1{{{1}}}""" + """b{b}b""" + """c\{{{ {\{{ {{\{ {{{1}}}""" +print s5 + +var s6 = +""" +{{{ +""" +""" +}}} +""" +print s6 + +var s9 = """*{{{ 1 }**{ 2 }}}***{{{ 3 }***" + "${ 4 }}}$""" +print s9 -- 1.7.9.5