repo.or.cz
/
factor
/
jcg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update Unicode docs
[factor/jcg.git]
/
extra
/
curses
/
curses-tests.factor
blob
21463b207bf7e0e0adb23a41a8bacf6516ce8e9e
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
5
6
: hello-curses ( -- )
7
[
8
curses-window new
9
"mainwin" >>name
10
add-curses-window
11
12
"mainwin" "hi" curses-printf
13
14
2000000 sleep
15
] with-curses ;
16
17
[
18
] [ hello-curses ] unit-test