diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-02 23:35:59 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-02 23:35:59 +0900 |
| commit | 7a3605cdd220b57cfd698dfce2c98f28d4a1018d (patch) | |
| tree | 92875369dab97fbdb649a84e1738f598ed9bdcd8 /test | |
| parent | d060c8a713cbfd356fd3814339bf6248d76f3507 (diff) | |
| parent | fd917df55a7851540d23f7f98b01bceb19224343 (diff) | |
| download | mruby-7a3605cdd220b57cfd698dfce2c98f28d4a1018d.tar.gz mruby-7a3605cdd220b57cfd698dfce2c98f28d4a1018d.zip | |
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'test')
| -rw-r--r-- | test/t/string.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/t/string.rb b/test/t/string.rb index f38790c17..ee969a696 100644 --- a/test/t/string.rb +++ b/test/t/string.rb @@ -319,3 +319,11 @@ assert('String#upcase!', '15.2.10.5.43') do a == 'ABC' end + +# Not ISO specified + +assert('String interpolation (mrb_str_concat for shared strings)') do + a = "A" * 32 + "#{a}:" == "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA:" +end + |
