]> gitweb.factorcode.org Git - factor.git/blob - basis/strings/tables/tables-tests.factor
dc0d4879902df1c86df1f0feeac543fabd734d73
[factor.git] / basis / strings / tables / tables-tests.factor
1 ! Copyright (C) 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: tools.test strings.tables ;
4 IN: strings.tables.tests
5
6 { { } } [ { } format-table ] unit-test
7
8 { { "A  BB" "CC D" } } [ { { "A" "BB" } { "CC" "D" } } format-table ] unit-test
9
10 { { "A C" "B " "D E" } } [ { { "A\nB" "C" } { "D" "E" } } format-table ] unit-test
11
12 { { "A B" "  C" "D E" } } [ { { "A" "B\nC" } { "D" "E" } } format-table ] unit-test
13
14 { { "A B" "C D" "  E" } } [ { { "A" "B" } { "C" "D\nE" } } format-table ] unit-test