2009-01-11 18:52:31 -05:00
|
|
|
! Copyright (C) 2009 Jose Antonio Ortega Ruiz.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2015-08-05 19:09:42 -04:00
|
|
|
USING: compiler.errors fuel.pprint io.streams.string tools.test ;
|
|
|
|
|
|
|
|
{ "(source-file-error nil \"hi\")" } [
|
|
|
|
[ "hi" "there" <compiler-error> fuel-pprint ] with-string-writer
|
|
|
|
] unit-test
|