2010-02-19 18:01:47 -05:00
|
|
|
USING: compiler.crossref fry kernel sequences tools.test vocabs words ;
|
|
|
|
IN: compiler.crossref.tests
|
|
|
|
|
|
|
|
! Dependencies of all words should always be satisfied unless we're
|
|
|
|
! in the middle of recompiling something
|
2015-07-03 12:39:59 -04:00
|
|
|
{ { } } [
|
2010-02-19 18:01:47 -05:00
|
|
|
all-words dup [ subwords ] map concat append
|
2015-05-12 21:50:34 -04:00
|
|
|
H{ } clone '[ _ dependencies-satisfied? ] reject
|
2010-02-19 18:01:47 -05:00
|
|
|
] unit-test
|