File: 10_ascii.t

package info (click to toggle)
libstring-toidentifier-en-perl 0.12-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: perl: 215; makefile: 2
file content (400 lines) | stat: -rw-r--r-- 17,983 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
use strict;
use warnings;
use Test::More;
use lib 't/lib';
use TestString 'is_both';

plan tests => (128 * 3) * 2;

# First as CamelCase.

is_both ["\x00"], 'null', 'null';
is_both ["\x01"], 'startOfHeading', 'startOfHeading';
is_both ["\x02"], 'startOfText', 'startOfText';
is_both ["\x03"], 'endOfText', 'endOfText';
is_both ["\x04"], 'endOfTransmission', 'endOfTransmission';
is_both ["\x05"], 'enquiryChar', 'enquiryChar';
is_both ["\x06"], 'ack', 'ack';
is_both ["\x07"], 'bellChar', 'bellChar';
is_both ["\x08"], 'backspace', 'backspace';
is_both ["\x09"], 'tabChar', 'tabChar';
is_both ["\x0A"], 'newline', 'newline';
is_both ["\x0B"], 'verticalTab', 'verticalTab';
is_both ["\x0C"], 'formFeed', 'formFeed';
is_both ["\x0D"], 'carriageReturn', 'carriageReturn';
is_both ["\x0E"], 'shiftOut', 'shiftOut';
is_both ["\x0F"], 'shiftIn', 'shiftIn';
is_both ["\x10"], 'dataLinkEscape', 'dataLinkEscape';
is_both ["\x11"], 'deviceControl1', 'deviceControl1';
is_both ["\x12"], 'deviceControl2', 'deviceControl2';
is_both ["\x13"], 'deviceControl3', 'deviceControl3';
is_both ["\x14"], 'deviceControl4', 'deviceControl4';
is_both ["\x15"], 'negativeAck', 'negativeAck';
is_both ["\x16"], 'synchronousIdle', 'synchronousIdle';
is_both ["\x17"], 'endOfTransmissionBlock', 'endOfTransmissionBlock';
is_both ["\x18"], 'cancelChar', 'cancelChar';
is_both ["\x19"], 'endOfMedium', 'endOfMedium';
is_both ["\x1A"], 'substituteChar', 'substituteChar';
is_both ["\x1B"], 'escapeChar', 'escapeChar';
is_both ["\x1C"], 'fileSeparator', 'fileSeparator';
is_both ["\x1D"], 'groupSeparator', 'groupSeparator';
is_both ["\x1E"], 'recordSeparator', 'recordSeparator';
is_both ["\x1F"], 'unitSeparator', 'unitSeparator';
is_both ["\x20"], 'spaceChar', 'spaceChar';
is_both ["\x21"], 'exclamationMark', 'exclamationMark';
is_both ["\x22"], 'doubleQuote', 'doubleQuote';
is_both ["\x23"], 'hashMark', 'hashMark';
is_both ["\x24"], 'dollarSign', 'dollarSign';
is_both ["\x25"], 'percentSign', 'percentSign';
is_both ["\x26"], 'ampersand', 'ampersand';
is_both ["\x27"], 'singleQuote', 'singleQuote';
is_both ["\x28"], 'leftParen', 'leftParen';
is_both ["\x29"], 'rightParen', 'rightParen';
is_both ["\x2A"], 'asterisk', 'asterisk';
is_both ["\x2B"], 'plusSign', 'plusSign';
is_both ["\x2C"], 'comma', 'comma';
is_both ["\x2D"], 'dash', 'dash';
is_both ["\x2E"], 'dot', 'dot';
is_both ["\x2F"], 'slash', 'slash';
is_both ["\x30"], '0', 'digit zero';
is_both ["\x31"], '1', 'digit one';
is_both ["\x32"], '2', 'digit two';
is_both ["\x33"], '3', 'digit three';
is_both ["\x34"], '4', 'digit four';
is_both ["\x35"], '5', 'digit five';
is_both ["\x36"], '6', 'digit six';
is_both ["\x37"], '7', 'digit seven';
is_both ["\x38"], '8', 'digit eight';
is_both ["\x39"], '9', 'digit nine';
is_both ["\x3A"], 'colon', 'colon';
is_both ["\x3B"], 'semicolon', 'semicolon';
is_both ["\x3C"], 'leftAngleBracket', 'leftAngleBracket';
is_both ["\x3D"], 'equalsSign', 'equalsSign';
is_both ["\x3E"], 'rightAngleBracket', 'rightAngleBracket';
is_both ["\x3F"], 'questionMark', 'questionMark';
is_both ["\x40"], 'atSign', 'atSign';
is_both ["\x41"], 'A', 'A';
is_both ["\x42"], 'B', 'B';
is_both ["\x43"], 'C', 'C';
is_both ["\x44"], 'D', 'D';
is_both ["\x45"], 'E', 'E';
is_both ["\x46"], 'F', 'F';
is_both ["\x47"], 'G', 'G';
is_both ["\x48"], 'H', 'H';
is_both ["\x49"], 'I', 'I';
is_both ["\x4A"], 'J', 'J';
is_both ["\x4B"], 'K', 'K';
is_both ["\x4C"], 'L', 'L';
is_both ["\x4D"], 'M', 'M';
is_both ["\x4E"], 'N', 'N';
is_both ["\x4F"], 'O', 'O';
is_both ["\x50"], 'P', 'P';
is_both ["\x51"], 'Q', 'Q';
is_both ["\x52"], 'R', 'R';
is_both ["\x53"], 'S', 'S';
is_both ["\x54"], 'T', 'T';
is_both ["\x55"], 'U', 'U';
is_both ["\x56"], 'V', 'V';
is_both ["\x57"], 'W', 'W';
is_both ["\x58"], 'X', 'X';
is_both ["\x59"], 'Y', 'Y';
is_both ["\x5A"], 'Z', 'Z';
is_both ["\x5B"], 'leftBracket', 'leftBracket';
is_both ["\x5C"], 'backslash', 'backslash';
is_both ["\x5D"], 'rightBracket', 'rightBracket';
is_both ["\x5E"], 'caret', 'caret';
is_both ["\x5F"], '_', '_';
is_both ["\x60"], 'backtick', 'backtick';
is_both ["\x61"], 'a', 'a';
is_both ["\x62"], 'b', 'b';
is_both ["\x63"], 'c', 'c';
is_both ["\x64"], 'd', 'd';
is_both ["\x65"], 'e', 'e';
is_both ["\x66"], 'f', 'f';
is_both ["\x67"], 'g', 'g';
is_both ["\x68"], 'h', 'h';
is_both ["\x69"], 'i', 'i';
is_both ["\x6A"], 'j', 'j';
is_both ["\x6B"], 'k', 'k';
is_both ["\x6C"], 'l', 'l';
is_both ["\x6D"], 'm', 'm';
is_both ["\x6E"], 'n', 'n';
is_both ["\x6F"], 'o', 'o';
is_both ["\x70"], 'p', 'p';
is_both ["\x71"], 'q', 'q';
is_both ["\x72"], 'r', 'r';
is_both ["\x73"], 's', 's';
is_both ["\x74"], 't', 't';
is_both ["\x75"], 'u', 'u';
is_both ["\x76"], 'v', 'v';
is_both ["\x77"], 'w', 'w';
is_both ["\x78"], 'x', 'x';
is_both ["\x79"], 'y', 'y';
is_both ["\x7A"], 'z', 'z';
is_both ["\x7B"], 'leftBrace', 'leftBrace';
is_both ["\x7C"], 'pipeChar', 'pipeChar';
is_both ["\x7D"], 'rightBrace', 'rightBrace';
is_both ["\x7E"], 'tilde', 'tilde';
is_both ["\x7F"], 'deleteChar', 'deleteChar';

# Now with a sep char.

is_both ["\x00", '_'], 'null', 'null';
is_both ["\x01", '_'], 'start_of_heading', 'start_of_heading';
is_both ["\x02", '_'], 'start_of_text', 'start_of_text';
is_both ["\x03", '_'], 'end_of_text', 'end_of_text';
is_both ["\x04", '_'], 'end_of_transmission', 'end_of_transmission';
is_both ["\x05", '_'], 'enquiry_char', 'enquiry_char';
is_both ["\x06", '_'], 'ack', 'ack';
is_both ["\x07", '_'], 'bell_char', 'bell_char';
is_both ["\x08", '_'], 'backspace', 'backspace';
is_both ["\x09", '_'], 'tab_char', 'tab_char';
is_both ["\x0A", '_'], 'newline', 'newline';
is_both ["\x0B", '_'], 'vertical_tab', 'vertical_tab';
is_both ["\x0C", '_'], 'form_feed', 'form_feed';
is_both ["\x0D", '_'], 'carriage_return', 'carriage_return';
is_both ["\x0E", '_'], 'shift_out', 'shift_out';
is_both ["\x0F", '_'], 'shift_in', 'shift_in';
is_both ["\x10", '_'], 'data_link_escape', 'data_link_escape';
is_both ["\x11", '_'], 'device_control1', 'device_control1';
is_both ["\x12", '_'], 'device_control2', 'device_control2';
is_both ["\x13", '_'], 'device_control3', 'device_control3';
is_both ["\x14", '_'], 'device_control4', 'device_control4';
is_both ["\x15", '_'], 'negative_ack', 'negative_ack';
is_both ["\x16", '_'], 'synchronous_idle', 'synchronous_idle';
is_both ["\x17", '_'], 'end_of_transmission_block', 'end_of_transmission_block';
is_both ["\x18", '_'], 'cancel_char', 'cancel_char';
is_both ["\x19", '_'], 'end_of_medium', 'end_of_medium';
is_both ["\x1A", '_'], 'substitute_char', 'substitute_char';
is_both ["\x1B", '_'], 'escape_char', 'escape_char';
is_both ["\x1C", '_'], 'file_separator', 'file_separator';
is_both ["\x1D", '_'], 'group_separator', 'group_separator';
is_both ["\x1E", '_'], 'record_separator', 'record_separator';
is_both ["\x1F", '_'], 'unit_separator', 'unit_separator';
is_both ["\x20", '_'], 'space_char', 'space_char';
is_both ["\x21", '_'], 'exclamation_mark', 'exclamation_mark';
is_both ["\x22", '_'], 'double_quote', 'double_quote';
is_both ["\x23", '_'], 'hash_mark', 'hash_mark';
is_both ["\x24", '_'], 'dollar_sign', 'dollar_sign';
is_both ["\x25", '_'], 'percent_sign', 'percent_sign';
is_both ["\x26", '_'], 'ampersand', 'ampersand';
is_both ["\x27", '_'], 'single_quote', 'single_quote';
is_both ["\x28", '_'], 'left_paren', 'left_paren';
is_both ["\x29", '_'], 'right_paren', 'right_paren';
is_both ["\x2A", '_'], 'asterisk', 'asterisk';
is_both ["\x2B", '_'], 'plus_sign', 'plus_sign';
is_both ["\x2C", '_'], 'comma', 'comma';
is_both ["\x2D", '_'], 'dash', 'dash';
is_both ["\x2E", '_'], 'dot', 'dot';
is_both ["\x2F", '_'], 'slash', 'slash';
is_both ["\x30", '_'], '0', 'digit zero';
is_both ["\x31", '_'], '1', 'digit one';
is_both ["\x32", '_'], '2', 'digit two';
is_both ["\x33", '_'], '3', 'digit three';
is_both ["\x34", '_'], '4', 'digit four';
is_both ["\x35", '_'], '5', 'digit five';
is_both ["\x36", '_'], '6', 'digit six';
is_both ["\x37", '_'], '7', 'digit seven';
is_both ["\x38", '_'], '8', 'digit eight';
is_both ["\x39", '_'], '9', 'digit nine';
is_both ["\x3A", '_'], 'colon', 'colon';
is_both ["\x3B", '_'], 'semicolon', 'semicolon';
is_both ["\x3C", '_'], 'left_angle_bracket', 'left_angle_bracket';
is_both ["\x3D", '_'], 'equals_sign', 'equals_sign';
is_both ["\x3E", '_'], 'right_angle_bracket', 'right_angle_bracket';
is_both ["\x3F", '_'], 'question_mark', 'question_mark';
is_both ["\x40", '_'], 'at_sign', 'at_sign';
is_both ["\x41", '_'], 'A', 'A';
is_both ["\x42", '_'], 'B', 'B';
is_both ["\x43", '_'], 'C', 'C';
is_both ["\x44", '_'], 'D', 'D';
is_both ["\x45", '_'], 'E', 'E';
is_both ["\x46", '_'], 'F', 'F';
is_both ["\x47", '_'], 'G', 'G';
is_both ["\x48", '_'], 'H', 'H';
is_both ["\x49", '_'], 'I', 'I';
is_both ["\x4A", '_'], 'J', 'J';
is_both ["\x4B", '_'], 'K', 'K';
is_both ["\x4C", '_'], 'L', 'L';
is_both ["\x4D", '_'], 'M', 'M';
is_both ["\x4E", '_'], 'N', 'N';
is_both ["\x4F", '_'], 'O', 'O';
is_both ["\x50", '_'], 'P', 'P';
is_both ["\x51", '_'], 'Q', 'Q';
is_both ["\x52", '_'], 'R', 'R';
is_both ["\x53", '_'], 'S', 'S';
is_both ["\x54", '_'], 'T', 'T';
is_both ["\x55", '_'], 'U', 'U';
is_both ["\x56", '_'], 'V', 'V';
is_both ["\x57", '_'], 'W', 'W';
is_both ["\x58", '_'], 'X', 'X';
is_both ["\x59", '_'], 'Y', 'Y';
is_both ["\x5A", '_'], 'Z', 'Z';
is_both ["\x5B", '_'], 'left_bracket', 'left_bracket';
is_both ["\x5C", '_'], 'backslash', 'backslash';
is_both ["\x5D", '_'], 'right_bracket', 'right_bracket';
is_both ["\x5E", '_'], 'caret', 'caret';
is_both ["\x5F", '_'], '_', '_';
is_both ["\x60", '_'], 'backtick', 'backtick';
is_both ["\x61", '_'], 'a', 'a';
is_both ["\x62", '_'], 'b', 'b';
is_both ["\x63", '_'], 'c', 'c';
is_both ["\x64", '_'], 'd', 'd';
is_both ["\x65", '_'], 'e', 'e';
is_both ["\x66", '_'], 'f', 'f';
is_both ["\x67", '_'], 'g', 'g';
is_both ["\x68", '_'], 'h', 'h';
is_both ["\x69", '_'], 'i', 'i';
is_both ["\x6A", '_'], 'j', 'j';
is_both ["\x6B", '_'], 'k', 'k';
is_both ["\x6C", '_'], 'l', 'l';
is_both ["\x6D", '_'], 'm', 'm';
is_both ["\x6E", '_'], 'n', 'n';
is_both ["\x6F", '_'], 'o', 'o';
is_both ["\x70", '_'], 'p', 'p';
is_both ["\x71", '_'], 'q', 'q';
is_both ["\x72", '_'], 'r', 'r';
is_both ["\x73", '_'], 's', 's';
is_both ["\x74", '_'], 't', 't';
is_both ["\x75", '_'], 'u', 'u';
is_both ["\x76", '_'], 'v', 'v';
is_both ["\x77", '_'], 'w', 'w';
is_both ["\x78", '_'], 'x', 'x';
is_both ["\x79", '_'], 'y', 'y';
is_both ["\x7A", '_'], 'z', 'z';
is_both ["\x7B", '_'], 'left_brace', 'left_brace';
is_both ["\x7C", '_'], 'pipe_char', 'pipe_char';
is_both ["\x7D", '_'], 'right_brace', 'right_brace';
is_both ["\x7E", '_'], 'tilde', 'tilde';
is_both ["\x7F", '_'], 'delete_char', 'delete_char';

# Test plurals.

is_both ["\x00\x00", '_'], '2_nulls', 'plural null';
is_both ["\x01\x01", '_'], '2_starts_of_heading', 'plural start_of_heading';
is_both ["\x02\x02", '_'], '2_starts_of_text', 'plural start_of_text';
is_both ["\x03\x03", '_'], '2_ends_of_text', 'plural end_of_text';
is_both ["\x04\x04", '_'], '2_ends_of_transmission', 'plural end_of_transmission';
is_both ["\x05\x05", '_'], '2_enquiry_chars', 'plural enquiry_char';
is_both ["\x06\x06", '_'], '2_acks', 'plural ack';
is_both ["\x07\x07", '_'], '2_bell_chars', 'plural bell_char';
is_both ["\x08\x08", '_'], '2_backspaces', 'plural backspace';
is_both ["\x09\x09", '_'], '2_tab_chars', 'plural tab_char';
is_both ["\x0A\x0A", '_'], '2_newlines', 'plural newline';
is_both ["\x0B\x0B", '_'], '2_vertical_tabs', 'plural vertical_tab';
is_both ["\x0C\x0C", '_'], '2_form_feeds', 'plural form_feed';
is_both ["\x0D\x0D", '_'], '2_carriage_returns', 'plural carriage_return';
is_both ["\x0E\x0E", '_'], '2_shifts_out', 'plural shift_out';
is_both ["\x0F\x0F", '_'], '2_shifts_in', 'plural shift_in';
is_both ["\x10\x10", '_'], '2_data_link_escapes', 'plural data_link_escape';
is_both ["\x11\x11", '_'], '2_device_control1s', 'plural device_control1';
is_both ["\x12\x12", '_'], '2_device_control2s', 'plural device_control2';
is_both ["\x13\x13", '_'], '2_device_control3s', 'plural device_control3';
is_both ["\x14\x14", '_'], '2_device_control4s', 'plural device_control4';
is_both ["\x15\x15", '_'], '2_negative_acks', 'plural negative_ack';
is_both ["\x16\x16", '_'], '2_synchronous_idles', 'plural synchronous_idle';
is_both ["\x17\x17", '_'], '2_ends_of_transmission_block', 'plural end_of_transmission_block';
is_both ["\x18\x18", '_'], '2_cancel_chars', 'plural cancel_char';
is_both ["\x19\x19", '_'], '2_ends_of_medium', 'plural end_of_medium';
is_both ["\x1A\x1A", '_'], '2_substitute_chars', 'plural substitute_char';
is_both ["\x1B\x1B", '_'], '2_escape_chars', 'plural escape_char';
is_both ["\x1C\x1C", '_'], '2_file_separators', 'plural file_separator';
is_both ["\x1D\x1D", '_'], '2_group_separators', 'plural group_separator';
is_both ["\x1E\x1E", '_'], '2_record_separators', 'plural record_separator';
is_both ["\x1F\x1F", '_'], '2_unit_separators', 'plural unit_separator';
is_both ["\x20\x20", '_'], '2_space_chars', 'plural space_char';
is_both ["\x21\x21", '_'], '2_exclamation_marks', 'plural exclamation_mark';
is_both ["\x22\x22", '_'], '2_double_quotes', 'plural double_quote';
is_both ["\x23\x23", '_'], '2_hash_marks', 'plural hash_mark';
is_both ["\x24\x24", '_'], '2_dollar_signs', 'plural dollar_sign';
is_both ["\x25\x25", '_'], '2_percent_signs', 'plural percent_sign';
is_both ["\x26\x26", '_'], '2_ampersands', 'plural ampersand';
is_both ["\x27\x27", '_'], '2_single_quotes', 'plural single_quote';
is_both ["\x28\x28", '_'], '2_left_parens', 'plural left_paren';
is_both ["\x29\x29", '_'], '2_right_parens', 'plural right_paren';
is_both ["\x2A\x2A", '_'], '2_asterisks', 'plural asterisk';
is_both ["\x2B\x2B", '_'], '2_plus_signs', 'plural plus_sign';
is_both ["\x2C\x2C", '_'], '2_commas', 'plural comma';
is_both ["\x2D\x2D", '_'], '2_dashes', 'plural dash';
is_both ["\x2E\x2E", '_'], '2_dots', 'plural dot';
is_both ["\x2F\x2F", '_'], '2_slashes', 'plural slash';
is_both ["\x30\x30", '_'], '00', 'plural digit zero';
is_both ["\x31\x31", '_'], '11', 'plural digit one';
is_both ["\x32\x32", '_'], '22', 'plural digit two';
is_both ["\x33\x33", '_'], '33', 'plural digit three';
is_both ["\x34\x34", '_'], '44', 'plural digit four';
is_both ["\x35\x35", '_'], '55', 'plural digit five';
is_both ["\x36\x36", '_'], '66', 'plural digit six';
is_both ["\x37\x37", '_'], '77', 'plural digit seven';
is_both ["\x38\x38", '_'], '88', 'plural digit eight';
is_both ["\x39\x39", '_'], '99', 'plural digit nine';
is_both ["\x3A\x3A", '_'], '2_colons', 'plural colon';
is_both ["\x3B\x3B", '_'], '2_semicolons', 'plural semicolon';
is_both ["\x3C\x3C", '_'], '2_left_angle_brackets', 'plural left_angle_bracket';
is_both ["\x3D\x3D", '_'], '2_equals_signs', 'plural equals_sign';
is_both ["\x3E\x3E", '_'], '2_right_angle_brackets', 'plural right_angle_bracket';
is_both ["\x3F\x3F", '_'], '2_question_marks', 'plural question_mark';
is_both ["\x40\x40", '_'], '2_at_signs', 'plural at_sign';
is_both ["\x41\x41", '_'], 'AA', 'plural A';
is_both ["\x42\x42", '_'], 'BB', 'plural B';
is_both ["\x43\x43", '_'], 'CC', 'plural C';
is_both ["\x44\x44", '_'], 'DD', 'plural D';
is_both ["\x45\x45", '_'], 'EE', 'plural E';
is_both ["\x46\x46", '_'], 'FF', 'plural F';
is_both ["\x47\x47", '_'], 'GG', 'plural G';
is_both ["\x48\x48", '_'], 'HH', 'plural H';
is_both ["\x49\x49", '_'], 'II', 'plural I';
is_both ["\x4A\x4A", '_'], 'JJ', 'plural J';
is_both ["\x4B\x4B", '_'], 'KK', 'plural K';
is_both ["\x4C\x4C", '_'], 'LL', 'plural L';
is_both ["\x4D\x4D", '_'], 'MM', 'plural M';
is_both ["\x4E\x4E", '_'], 'NN', 'plural N';
is_both ["\x4F\x4F", '_'], 'OO', 'plural O';
is_both ["\x50\x50", '_'], 'PP', 'plural P';
is_both ["\x51\x51", '_'], 'QQ', 'plural Q';
is_both ["\x52\x52", '_'], 'RR', 'plural R';
is_both ["\x53\x53", '_'], 'SS', 'plural S';
is_both ["\x54\x54", '_'], 'TT', 'plural T';
is_both ["\x55\x55", '_'], 'UU', 'plural U';
is_both ["\x56\x56", '_'], 'VV', 'plural V';
is_both ["\x57\x57", '_'], 'WW', 'plural W';
is_both ["\x58\x58", '_'], 'XX', 'plural X';
is_both ["\x59\x59", '_'], 'YY', 'plural Y';
is_both ["\x5A\x5A", '_'], 'ZZ', 'plural Z';
is_both ["\x5B\x5B", '_'], '2_left_brackets', 'plural left_bracket';
is_both ["\x5C\x5C", '_'], '2_backslashes', 'plural backslash';
is_both ["\x5D\x5D", '_'], '2_right_brackets', 'plural right_bracket';
is_both ["\x5E\x5E", '_'], '2_carets', 'plural caret';
is_both ["\x5F\x5F", '_'], '__', 'plural _';
is_both ["\x60\x60", '_'], '2_backticks', 'plural backtick';
is_both ["\x61\x61", '_'], 'aa', 'plural a';
is_both ["\x62\x62", '_'], 'bb', 'plural b';
is_both ["\x63\x63", '_'], 'cc', 'plural c';
is_both ["\x64\x64", '_'], 'dd', 'plural d';
is_both ["\x65\x65", '_'], 'ee', 'plural e';
is_both ["\x66\x66", '_'], 'ff', 'plural f';
is_both ["\x67\x67", '_'], 'gg', 'plural g';
is_both ["\x68\x68", '_'], 'hh', 'plural h';
is_both ["\x69\x69", '_'], 'ii', 'plural i';
is_both ["\x6A\x6A", '_'], 'jj', 'plural j';
is_both ["\x6B\x6B", '_'], 'kk', 'plural k';
is_both ["\x6C\x6C", '_'], 'll', 'plural l';
is_both ["\x6D\x6D", '_'], 'mm', 'plural m';
is_both ["\x6E\x6E", '_'], 'nn', 'plural n';
is_both ["\x6F\x6F", '_'], 'oo', 'plural o';
is_both ["\x70\x70", '_'], 'pp', 'plural p';
is_both ["\x71\x71", '_'], 'qq', 'plural q';
is_both ["\x72\x72", '_'], 'rr', 'plural r';
is_both ["\x73\x73", '_'], 'ss', 'plural s';
is_both ["\x74\x74", '_'], 'tt', 'plural t';
is_both ["\x75\x75", '_'], 'uu', 'plural u';
is_both ["\x76\x76", '_'], 'vv', 'plural v';
is_both ["\x77\x77", '_'], 'ww', 'plural w';
is_both ["\x78\x78", '_'], 'xx', 'plural x';
is_both ["\x79\x79", '_'], 'yy', 'plural y';
is_both ["\x7A\x7A", '_'], 'zz', 'plural z';
is_both ["\x7B\x7B", '_'], '2_left_braces', 'plural left_brace';
is_both ["\x7C\x7C", '_'], '2_pipe_chars', 'plural pipe_char';
is_both ["\x7D\x7D", '_'], '2_right_braces', 'plural right_brace';
is_both ["\x7E\x7E", '_'], '2_tildes', 'plural tilde';
is_both ["\x7F\x7F", '_'], '2_delete_chars', 'plural delete_char';