jashkenas--coffeescript/test/test_heredocs.coffee

47 lines
341 B
CoffeeScript
Raw Normal View History

2010-01-12 04:53:50 +00:00
a: """
basic heredoc
on two lines
"""
ok a is "basic heredoc\non two lines"
2010-01-12 04:53:50 +00:00
a: '''
a
2010-01-12 05:00:38 +00:00
"b
2010-01-12 04:53:50 +00:00
c
'''
ok a is "a\n \"b\nc"
2010-01-12 04:53:50 +00:00
a: '''one-liner'''
ok a is 'one-liner'
2010-01-12 04:53:50 +00:00
a: """
out
here
"""
ok a is "out\nhere"
a: '''
a
b
c
'''
ok a is " a\n b\nc"
a: '''
a
b c
'''
ok a is "a\n\n\nb c"