docs
[pspp] / tests / output / render.at
1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
3 dnl
4 dnl This program is free software: you can redistribute it and/or modify
5 dnl it under the terms of the GNU General Public License as published by
6 dnl the Free Software Foundation, either version 3 of the License, or
7 dnl (at your option) any later version.
8 dnl
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 dnl GNU General Public License for more details.
13 dnl
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 AT_BANNER([output rendering -- problematic procedures])
18
19 dnl LIST used to put columns right up next to each other without any
20 dnl intervening space, so this checks for regression.
21 AT_SETUP([LIST puts space between columns])
22 AT_KEYWORDS([render rendering])
23 AT_DATA([list.sps], [dnl
24 DATA LIST LIST NOTABLE /x y z (F1.0).
25 BEGIN DATA.
26 1 2 3
27 4 5 6
28 7 8 9
29 END DATA.
30 LIST.
31 ])
32 AT_CHECK([pspp list.sps], [0], [dnl
33 Data List
34 +-+-+-+
35 |x|y|z|
36 +-+-+-+
37 |1|2|3|
38 |4|5|6|
39 |7|8|9|
40 +-+-+-+
41 ])
42 AT_CLEANUP