X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Foutput%2Fascii.at;h=b4de68808ee8d2f9f985be211e93e5aab0087058;hb=960d7a3b2d6748d78537572df211a47eb0709ed5;hp=a3f66b933be8bb5afdaa570d7799b3282db5dfc6;hpb=b745220f07d9ea7d4196318a79835563bbcbad6f;p=pspp diff --git a/tests/output/ascii.at b/tests/output/ascii.at index a3f66b933b..b4de68808e 100644 --- a/tests/output/ascii.at +++ b/tests/output/ascii.at @@ -627,3 +627,29 @@ included in the variable list. ]) AT_CLEANUP + +AT_SETUP([ASCII unicode box chars]) + +AT_DATA([uc.sps], [dnl +SET FORMAT=F8.4. +DATA LIST NOTABLE LIST /x * . +BEGIN DATA. +1 +2 +3 +END DATA. + +DESCRIPTIVES X. +]) + + +AT_CHECK([pspp -O box=unicode uc.sps], [0], [dnl +Valid cases = 3; cases with missing value(s) = 0. +╭────────╥─┬──────┬───────┬───────┬───────╮ +│Variable║N│ Mean │Std Dev│Minimum│Maximum│ +╞════════╬═╪══════╪═══════╪═══════╪═══════╡ +│x ║3│2.0000│ 1.0000│ 1.0000│ 3.0000│ +╰────────╨─┴──────┴───────┴───────┴───────╯ +]) + +AT_CLEANUP