Skip to content

Commit

Permalink
add test for #23
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Aug 14, 2018
1 parent c8d7255 commit b066e73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ end
@test tst1[1] == 'a'
@test codeunit(tst1, 1) == UInt8('a')
@test L"foo"[1] == '$'
@test tst1[1:2] == tst1[0x01:0x02] == tst1[[1,2]] == "an"
@test tst1[1:2] == tst1[0x01:0x02] == tst1[[1,2]] == "an"

# issue #23 — will change if #17 is addressed
@test L"x" * L"y" == "\$x\$\$y\$"

0 comments on commit b066e73

Please sign in to comment.