From 9a62e1188b4e4b89fdfa66317b87768f47c1188b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Lindqvist?= Date: Sat, 30 Jul 2016 17:30:51 +0200 Subject: [PATCH] terminfo.tests: two sanity tests --- extra/terminfo/terminfo-tests.factor | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 extra/terminfo/terminfo-tests.factor diff --git a/extra/terminfo/terminfo-tests.factor b/extra/terminfo/terminfo-tests.factor new file mode 100644 index 0000000000..c9cad51f1c --- /dev/null +++ b/extra/terminfo/terminfo-tests.factor @@ -0,0 +1,10 @@ +USING: sequences strings terminfo tools.test ; +IN: terminfo.tests + +{ t } [ + "vt102" terminfo-names member? +] unit-test + +{ t } [ + "vt102" terminfo-path string? +] unit-test