Update Unicode docs
[factor/jcg.git] / extra / curses / curses-tests.factor
blob21463b207bf7e0e0adb23a41a8bacf6516ce8e9e
1 ! Copyright (C) 2009 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors curses kernel threads tools.test ;
4 IN: curses.tests
6 : hello-curses ( -- )
7     [
8         curses-window new
9             "mainwin" >>name
10         add-curses-window
12         "mainwin" "hi" curses-printf
14         2000000 sleep
15     ] with-curses ;
18 ] [ hello-curses ] unit-test