@@ -26,7 +26,7 @@ data = Any[1 false 1.0 0x01 ;
2626│ 6 │ true │ 6.0 │ 6 │
2727└────────┴────────┴────────┴────────┘
2828"""
29- result = pretty_table (String, data; alignment = :l )
29+ result = prettytable (String, data; alignment = :l )
3030 @test result == expected
3131
3232 # == Center ============================================================================
@@ -42,7 +42,7 @@ data = Any[1 false 1.0 0x01 ;
4242│ 6 │ true │ 6.0 │ 6 │
4343└────────┴────────┴────────┴────────┘
4444"""
45- result = pretty_table (String, data; alignment = :c )
45+ result = prettytable (String, data; alignment = :c )
4646 @test result == expected
4747
4848 # == Per Column Configuration ==========================================================
@@ -59,7 +59,7 @@ data = Any[1 false 1.0 0x01 ;
5959│ 6 │ true │ 6.0 │ 6 │
6060└────────┴────────┴────────┴────────┘
6161"""
62- result = pretty_table (String, data; alignment = [:l , :r , :c , :r ])
62+ result = prettytable (String, data; alignment = [:l , :r , :c , :r ])
6363 @test result == expected
6464
6565 # == Cell Override =====================================================================
@@ -76,7 +76,7 @@ data = Any[1 false 1.0 0x01 ;
7676│ 6 │ true │ 6.0 │ 6 │
7777└────────┴────────┴────────┴────────┘
7878"""
79- result = pretty_table (
79+ result = prettytable (
8080 String,
8181 data;
8282 alignment = [:l , :r , :c , :r ],
@@ -110,7 +110,7 @@ data = Any[1 false 1.0 0x01 ;
110110└───────────┴───────────┴───────────┴───────────┘
111111"""
112112
113- result = pretty_table (
113+ result = prettytable (
114114 String,
115115 data;
116116 header = header,
@@ -142,7 +142,7 @@ data = Any[1 false 1.0 0x01 ;
142142└───────────┴───────────┴───────────┴───────────┘
143143"""
144144
145- result = pretty_table (
145+ result = prettytable (
146146 String, data;
147147 header = header,
148148 alignment = [:l , :r , :c , :r ],
@@ -183,15 +183,15 @@ end
183183└────────────┴────────────┴──────────────┴──────────────┴────────────────┴────────────────┴────────────────┘
184184"""
185185
186- result = pretty_table (
186+ result = prettytable (
187187 String,
188188 matrix;
189189 alignment_anchor_regex = Dict (0 => [r" \. " ])
190190 )
191191
192192 @test result == expected
193193
194- result = pretty_table (
194+ result = prettytable (
195195 String,
196196 matrix;
197197 alignment_anchor_regex = Dict (i => [r" \. " ] for i in 1 : 7 )
213213└───────────┴───────────┴─────────────┴─────────────┴───────────────┴───────────────┴───────────────┘
214214"""
215215
216- result = pretty_table (
216+ result = prettytable (
217217 String,
218218 matrix;
219219 alignment_anchor_regex = Dict (0 => [r" \. " , r" ^" ])
237237└─────┴─────────┴─────────┴─────────┴─────────────┴──────────┴──────────┴──────────┘
238238"""
239239
240- result = pretty_table (
240+ result = prettytable (
241241 String,
242242 matrix,
243243 alignment_anchor_regex = Dict (4 => [r" \. " , r" ^" ]),
260260└─────┴───┴─────────┴─────────┴─────────┴─────────────┴──────────┴──────────┴──────────┘
261261"""
262262
263- result = pretty_table (
263+ result = prettytable (
264264 String,
265265 matrix,
266266 alignment_anchor_regex = Dict (4 => [r" \. " , r" ^" ]),
286286└─────────┴─────────┴─────────┴──────────────────────┴──────────┴──────────┴──────────┘
287287"""
288288
289- result = pretty_table (
289+ result = prettytable (
290290 String,
291291 matrix;
292292 alignment_anchor_regex = Dict (4 => [r" \. " , r" ^" ]),
309309└─────────┴─────────┴─────────┴──────────────────────┴──────────┴──────────┴──────────┘
310310"""
311311
312- result = pretty_table (
312+ result = prettytable (
313313 String,
314314 matrix;
315315 alignment = :c ,
333333└─────────┴─────────┴─────────┴──────────────────────┴──────────┴──────────┴──────────┘
334334"""
335335
336- result = pretty_table (
336+ result = prettytable (
337337 String,
338338 matrix;
339339 alignment = :l ,
359359└─────────────────┴─────────────────┴─────────────────┴─────────────────┴─────────────────┴─────────────────┴─────────────────┘
360360"""
361361
362- result = pretty_table (
362+ result = prettytable (
363363 String,
364364 matrix;
365365 alignment_anchor_regex = Dict (4 => [r" \. " , r" ^" ]),
382382└─────────┴─────────┴─────────┴────────────┴──────────┴──────────┴──────────┘
383383"""
384384
385- result = pretty_table (
385+ result = prettytable (
386386 String,
387387 matrix;
388388 alignment_anchor_regex = Dict (4 => [r" \. " , r" ^" ]),
407407└──────────┴──────────┴───────────┴──────────┴────────────┴────────────┴────────────┘
408408"""
409409
410- result = pretty_table (
410+ result = prettytable (
411411 String,
412412 matrix;
413413 alignment_anchor_regex = Dict (i => [r" \. " ] for i in 1 : 7 ),
430430└──────────────┴──────────────┴──────────────┴─────────────┴────────────┴───────────┴─────────────┘
431431"""
432432
433- result = pretty_table (
433+ result = prettytable (
434434 String,
435435 matrix;
436436 alignment_anchor_regex = Dict (i => [r" \. " ] for i in 1 : 7 ),
453453└────────────┴──────────┴──────────────┴─────────────┴────────────────┴────────────────┴────────────────┘
454454"""
455455
456- result = pretty_table (
456+ result = prettytable (
457457 String,
458458 matrix;
459459 alignment_anchor_regex = Dict (0 => [r" \. " ]),
476476└──────────┴──────────┴───────────┴─────────────┴────────────────┴────────────┴────────────┘
477477"""
478478
479- result = pretty_table (
479+ result = prettytable (
480480 String,
481481 matrix;
482482 alignment_anchor_regex = Dict (0 => [r" \. " ]),
502502└─────┴──────────┴──────────┴───────────┴─────────────┴────────────────┴────────────┴────────────┘
503503"""
504504
505- result = pretty_table (
505+ result = prettytable (
506506 String,
507507 matrix;
508508 alignment_anchor_regex = Dict (0 => [r" \. " ]),
527527└───────┴──────────┴──────────┴───────────┴─────────────┴────────────────┴────────────┴────────────┘
528528"""
529529
530- result = pretty_table (
530+ result = prettytable (
531531 String,
532532 matrix;
533533 alignment_anchor_regex = Dict (0 => [r" \. " ]),
0 commit comments