aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/vulgar/vulgar.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/vulgar/vulgar.scm')
-rw-r--r--tests/unit/vulgar/vulgar.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/unit/vulgar/vulgar.scm b/tests/unit/vulgar/vulgar.scm
new file mode 100644
index 00000000..7771724f
--- /dev/null
+++ b/tests/unit/vulgar/vulgar.scm
@@ -0,0 +1,15 @@
+(define-module (test vulgar)
+ :use-module (srfi srfi-64)
+ :use-module (srfi srfi-88)
+ :use-module (vulgar))
+
+(test-equal "CLS"
+ "\x1b[H\x1b[J"
+ (with-output-to-string (lambda () (cls))))
+
+;;; Extra with-output-to-string so escape sequences are escaped in error diff.
+(test-equal "set-cursor-position"
+ (with-output-to-string (lambda () (write "\x1b[21;11H")))
+ (with-output-to-string (lambda () (write (with-output-to-string (lambda () (set-cursor-pos 10 20)))))))
+
+'((vulgar))