psppire-import-assistant (struct _PsppireImportAssistant): Remove unused member.
[pspp] / tests / language / stats / autorecode.at
index 42f3cd32c0c9dc5cad19245bc7101562ac760306..7e886fa08cdb06e8ecddee8b3bde2ef37e924b68 100644 (file)
@@ -522,3 +522,24 @@ x,y
 8,4
 ])
 AT_CLEANUP
+
+
+AT_SETUP([AUTORECODE with /BLANK without specifier])
+
+AT_DATA([autorecode.sps], [data list notable list /x (a18).
+begin data
+one
+two
+three
+end data.
+
+* /BLANK should be either =MISSING or =VALID
+autorecode x /into y
+ /blank
+
+execute.
+])
+
+AT_CHECK([pspp -O format=csv autorecode.sps], [1], [ignore])
+
+AT_CLEANUP