X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Foutput%2Fascii.at;h=b4de68808ee8d2f9f985be211e93e5aab0087058;hb=3a21788dd4f7a4f10d12a12e83c8890f857b5e98;hp=a3f66b933be8bb5afdaa570d7799b3282db5dfc6;hpb=6f3865480503c571963d8a2d1af858a4d72d4e88;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