fix using and tests
parent
05ddfb37dc
commit
823c2c0a58
|
@ -1,29 +1,29 @@
|
|||
! Copyright (C) 2008, 2009 Daniel Ehrenberg, Slava Pestov
|
||||
! See http://factorcode.org/license.txt for BSD license.
|
||||
USING: wrap.strings tools.test multiline ;
|
||||
USING: wrap.strings tools.test ;
|
||||
IN: wrap.strings.tests
|
||||
|
||||
[
|
||||
<" This is a
|
||||
"""This is a
|
||||
long piece
|
||||
of text
|
||||
that we
|
||||
wish to
|
||||
word wrap.">
|
||||
word wrap."""
|
||||
] [
|
||||
<" This is a long piece of text that we wish to word wrap."> 10
|
||||
"""This is a long piece of text that we wish to word wrap.""" 10
|
||||
wrap-string
|
||||
] unit-test
|
||||
|
||||
[
|
||||
<" This is a
|
||||
""" This is a
|
||||
long piece
|
||||
of text
|
||||
that we
|
||||
wish to
|
||||
word wrap.">
|
||||
word wrap."""
|
||||
] [
|
||||
<" This is a long piece of text that we wish to word wrap."> 12
|
||||
"""This is a long piece of text that we wish to word wrap.""" 12
|
||||
" " wrap-indented-string
|
||||
] unit-test
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
! (c)2009 Joe Groff, see BSD license
|
||||
USING: accessors arrays literals math math.affine-transforms
|
||||
math.functions sequences svg tools.test xml xml.traversal ;
|
||||
math.functions sequences svg tools.test xml xml.traversal multiline ;
|
||||
IN: svg.tests
|
||||
|
||||
{ 1.0 2.25 } { -3.0 4.0 } { 5.5 0.5 } <affine-transform> 1array [
|
||||
|
|
Loading…
Reference in New Issue