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