factor/basis/ui/gadgets/frames/frames-tests.factor

18 lines
451 B
Factor
Raw Normal View History

2008-11-25 20:20:25 -05:00
USING: accessors kernel namespaces tools.test ui.gadgets
ui.gadgets.frames ui.gadgets.grids ui.gadgets.labels ;
2008-03-01 17:00:45 -05:00
IN: ui.gadgets.frames.tests
2007-09-20 18:09:08 -04:00
[ ] [ <frame> layout ] unit-test
2008-11-25 20:20:25 -05:00
[ t ] [
<frame>
"Hello world" <label> @top grid-add
"Hello world" <label> @center grid-add
dup pref-dim "dim1" set
{ 1000 1000 } >>dim
dup layout*
dup pref-dim "dim2" set
drop
"dim1" get "dim2" get =
] unit-test