jashkenas--coffeescript/test/test_heredocs.coffee

73 lines
703 B
CoffeeScript
Raw Normal View History

2010-07-25 05:23:37 +00:00
a = """
basic heredoc
on two lines
"""
2010-01-12 04:53:50 +00:00
ok a is "basic heredoc\non two lines"
2010-01-12 04:53:50 +00:00
2010-07-25 05:23:37 +00:00
a = '''
a
"b
c
'''
2010-01-12 04:53:50 +00:00
ok a is "a\n \"b\nc"
2010-01-12 04:53:50 +00:00
2010-07-25 05:23:37 +00:00
a = '''one-liner'''
2010-01-12 04:53:50 +00:00
ok a is 'one-liner'
2010-01-12 04:53:50 +00:00
2010-07-25 05:23:37 +00:00
a = """
2010-01-12 04:53:50 +00:00
out
here
"""
ok a is "out\nhere"
2010-07-25 05:23:37 +00:00
a = '''
a
b
c
'''
ok a is " a\n b\nc"
2010-07-25 05:23:37 +00:00
a = '''
a
b c
'''
ok a is "a\n\n\nb c"
2010-07-25 05:23:37 +00:00
a = '''more"than"one"quote'''
ok a is 'more"than"one"quote'
2010-07-25 05:23:37 +00:00
val = 10
2010-07-25 05:23:37 +00:00
a = """
basic heredoc #{val}
2010-07-25 05:23:37 +00:00
on two lines
"""
2010-07-25 05:23:37 +00:00
b = '''
basic heredoc #{val}
2010-07-25 05:23:37 +00:00
on two lines
'''
ok a is "basic heredoc 10\non two lines"
ok b is "basic heredoc \#{val}\non two lines"
2010-07-25 05:23:37 +00:00
a = '''here's an apostrophe'''
ok a is "here's an apostrophe"