From f40b7409b8599cc090c82fc3101bb40ead146eef Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 4 Aug 2022 18:26:45 -0700 Subject: [PATCH] titles --- tests/language/stats/ctables.at | 39 ++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/tests/language/stats/ctables.at b/tests/language/stats/ctables.at index 4b520cc0cd..0eb8760a58 100644 --- a/tests/language/stats/ctables.at +++ b/tests/language/stats/ctables.at @@ -12,7 +12,6 @@ dnl * Date values dnl * THRU (numeric ranges) dnl * OTHERNM dnl - Date/time variables and values -dnl - TITLES: )DATE, )TIME, )TABLE. dnl - Test PCOMPUTE: dnl * PCOMPUTE for more than one kind of summary (e.g. [COUNT, ROWPCT]). dnl * MISSING, OTHERNM @@ -2492,3 +2491,41 @@ AT_CHECK([pspp ctables.sps -O box=unicode], [0], [dnl ╰─┴───────┴───────┴───────┴───────┴───────┴───────┴───────┴───────╯ ]) AT_CLEANUP + +AT_SETUP([CTABLES TITLES]) +AT_CHECK([ln $top_srcdir/examples/nhtsa.sav . || cp $top_srcdir/examples/nhtsa.sav .]) +AT_DATA([ctables.sps], +[[GET 'nhtsa.sav'. +CTABLES + /VLABELS VARIABLES=qn1 DISPLAY=NONE + /TABLE ((qn1[c][COUNT])) BY qns3a[c] > qnd5 + /TITLES TITLE='How often do you drive?' + CAPTION='Generated )TIME on )DATE' + CORNER=')TABLE'. +]]) +AT_CHECK([pspp ctables.sps -O box=unicode | sed 's/..:..:../HH:MM:SS/ +s&../../..&MM/DD/YY&'], [0], [dnl + How often do you drive? +╭───────────────────────────────────┬─────────────────────────────────────────╮ +│ │ S3a. GENDER: │ +│ ├────────────────────┬────────────────────┤ +│ │ Male │ Female │ +│ ├────────────────────┼────────────────────┤ +│ │ D5. ETHNICITY: Are │ D5. ETHNICITY: Are │ +│ │ you of Hispanic or │ you of Hispanic or │ +│ │ Latino origin or │ Latino origin or │ +│( ( 1. How often do you usually │ descent? │ descent? │ +│drive a car or other motor ├─────────┬──────────┼─────────┬──────────┤ +│vehicle?) ) BY S3a. GENDER: > D5. │ Yes │ No │ Yes │ No │ +│ETHNICITY: Are you of Hispanic or ├─────────┼──────────┼─────────┼──────────┤ +│Latino origin or descent? │ Count │ Count │ Count │ Count │ +├───────────────────────────────────┼─────────┼──────────┼─────────┼──────────┤ +│Every day │ 218│ 2066│ 166│ 2175│ +│Several days a week │ 44│ 391│ 45│ 782│ +│Once a week or less │ 16│ 109│ 12│ 223│ +│Only certain times a year │ 15│ 41│ 11│ 61│ +│Never │ 39│ 150│ 56│ 278│ +╰───────────────────────────────────┴─────────┴──────────┴─────────┴──────────╯ +Generated HH:MM:SS on MM/DD/YY +]) +AT_CLEANUP -- 2.30.2