ref: 0d7d70e5b1a4b5c7ae618d6d04fb30848b18c08f
dir: /lib/escfmt/test/escsh.myr/
use std use escfmt use testr const main = { testr.run([ [.name="basic", .fn={ctx var s = std.fmt("{}", escfmt.sh("word")) testr.check(ctx, std.eq("'word'", s), "mismatched escape") std.slfree(s) }], [.name="twowords", .fn={ctx var s = std.fmt("{}", escfmt.sh("two words")) testr.check(ctx, std.eq("'two words'", s), "mismatched escape") std.slfree(s) }], [.name="simplequote", .fn={ctx var s = std.fmt("{}", escfmt.sh("two'words")) testr.check(ctx, std.eq("'two'\\''words'", s), "mismatched escape") std.slfree(s) }], [.name="quotequote", .fn={ctx var s = std.fmt("{}", escfmt.sh("two'\\''words")) testr.check(ctx, std.eq("'two'\\''\\'\\'''\\''words'", s), "mismatched escape") std.slfree(s) }] ][:]) }