shithub: mc

ref: 86aa50f243677df226f5ee02d6b15f85c634a6f1
dir: /lib/escfmt/test/escre.myr/

View raw version
use std
use escfmt
use testr

const main = {
	testr.run([\
		[.name="unchanged", .fn={ctx
			var s = std.fmt("{}", escfmt.url("word"))
			testr.check(ctx, std.eq("word", s), std.fmt("mismatched escape {}", s))
			std.slfree(s)
		}],
		[.name="randomcrud", .fn={ctx
			var s = std.fmt("{}", escfmt.re("^:/?#[]@!$&'()*+,;=%"))
			testr.check(ctx, \
				std.eq("\\^:/\\?#\\[\\]@!\\$&'\\(\\)\\*\\+,;=%", s), \
				std.fmt("mismatched escape {}", s))
			std.slfree(s)
		}],
	][:])
}