tmail 1.2.3.1 → 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README +10 -0
- data/ext/tmailscanner/tmail/tmailscanner.c +39 -8
- data/lib/tmail.rb +1 -0
- data/lib/tmail/address.rb +6 -40
- data/lib/tmail/attachments.rb +41 -22
- data/lib/tmail/encode.rb +9 -0
- data/lib/tmail/header.rb +5 -3
- data/lib/tmail/interface.rb +40 -3
- data/lib/tmail/mail.rb +3 -3
- data/lib/tmail/mailbox.rb +3 -2
- data/lib/tmail/net.rb +3 -1
- data/lib/tmail/parser.rb +204 -620
- data/lib/tmail/parser.y +38 -3
- data/lib/tmail/quoting.rb +38 -1
- data/lib/tmail/utils.rb +28 -4
- data/lib/tmail/vendor/rchardet-1.3/COPYING +504 -0
- data/lib/tmail/vendor/rchardet-1.3/README +12 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet.rb +67 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +927 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +237 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +112 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +75 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +64 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +90 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +244 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +596 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +430 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +474 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +42 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +289 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +570 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +229 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +330 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +227 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +202 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +226 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +201 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +147 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +89 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +47 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +542 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +124 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +58 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +88 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +166 -0
- data/lib/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +87 -0
- data/lib/tmail/version.rb +1 -1
- data/setup.rb +2 -2
- data/test/fixtures/apple_unquoted_content_type +44 -0
- data/test/fixtures/inline_attachment.txt +2095 -0
- data/test/fixtures/iso_8859_1_email_without_encoding_and_message_id.txt +16 -0
- data/test/fixtures/mailbox.zip +0 -0
- data/test/fixtures/marked_as_iso_8859_1_but_it_is_utf_8.txt +33 -0
- data/test/fixtures/marked_as_utf_8_but_it_is_iso_8859_1.txt +56 -0
- data/test/fixtures/raw_email_bad_time +62 -0
- data/test/fixtures/raw_email_double_at_in_header +14 -0
- data/test/fixtures/raw_email_only_attachment +17 -0
- data/test/fixtures/raw_email_string_in_date_field +17 -0
- data/test/fixtures/raw_email_trailing_dot +21 -0
- data/test/fixtures/raw_email_with_quoted_attachment_filename +60 -0
- data/test/fixtures/raw_email_with_wrong_splitted_multibyte_encoded_word_subject +15 -0
- data/test/fixtures/the_only_part_is_a_word_document.txt +425 -0
- data/test/fixtures/unquoted_filename_in_attachment +177 -0
- data/test/test_address.rb +114 -92
- data/test/test_attachments.rb +84 -1
- data/test/test_encode.rb +54 -0
- data/test/test_header.rb +60 -2
- data/test/test_mail.rb +22 -15
- data/test/test_mbox.rb +12 -3
- data/test/test_port.rb +13 -9
- data/test/test_quote.rb +9 -0
- data/tmail.gemspec +34 -0
- metadata +68 -167
- data/MANIFEST +0 -191
- data/log/BugTrackingLog.txt +0 -1231
- data/log/Changelog.txt +0 -534
- data/log/Fixme.txt +0 -6
- data/log/Testlog.txt +0 -2340
- data/log/Todo.txt +0 -30
- data/log/fixme.rdoc +0 -6
- data/meta/MANIFEST +0 -128
- data/meta/VERSION +0 -1
- data/meta/project.yaml +0 -30
- data/meta/unixname +0 -1
- data/sample/bench_base64.rb +0 -48
- data/sample/data/multipart +0 -23
- data/sample/data/normal +0 -29
- data/sample/data/sendtest +0 -5
- data/sample/data/simple +0 -14
- data/sample/data/test +0 -27
- data/sample/extract-attachements.rb +0 -33
- data/sample/from-check.rb +0 -26
- data/sample/multipart.rb +0 -26
- data/sample/parse-bench.rb +0 -68
- data/sample/parse-test.rb +0 -19
- data/sample/sendmail.rb +0 -94
- data/site/contributing/index.html +0 -183
- data/site/css/clean.css +0 -27
- data/site/css/layout.css +0 -31
- data/site/css/style.css +0 -60
- data/site/download/index.html +0 -61
- data/site/img/envelope.jpg +0 -0
- data/site/img/mailman.gif +0 -0
- data/site/img/stamp-sm.jpg +0 -0
- data/site/img/stamp.jpg +0 -0
- data/site/img/stampborder.jpg +0 -0
- data/site/img/tfire.jpg +0 -0
- data/site/img/tmail.png +0 -0
- data/site/index.html +0 -270
- data/site/js/jquery.js +0 -31
- data/site/log/Changelog.xsl +0 -33
- data/site/log/changelog.xml +0 -1677
- data/site/outdated/BUGS +0 -3
- data/site/outdated/DEPENDS +0 -1
- data/site/outdated/Incompatibilities +0 -89
- data/site/outdated/Incompatibilities.ja +0 -102
- data/site/outdated/NEWS +0 -9
- data/site/outdated/README.ja +0 -73
- data/site/outdated/doc.ja/address.html +0 -275
- data/site/outdated/doc.ja/basics.html +0 -405
- data/site/outdated/doc.ja/config.html +0 -49
- data/site/outdated/doc.ja/details.html +0 -146
- data/site/outdated/doc.ja/index.html +0 -39
- data/site/outdated/doc.ja/mail.html +0 -793
- data/site/outdated/doc.ja/mailbox.html +0 -265
- data/site/outdated/doc.ja/port.html +0 -95
- data/site/outdated/doc.ja/tmail.html +0 -58
- data/site/outdated/doc.ja/usage.html +0 -202
- data/site/outdated/rdd/address.rrd.m +0 -229
- data/site/outdated/rdd/basics.rd.m +0 -275
- data/site/outdated/rdd/config.rrd.m +0 -26
- data/site/outdated/rdd/details.rd.m +0 -117
- data/site/outdated/rdd/index.rhtml.m +0 -54
- data/site/outdated/rdd/mail.rrd.m +0 -701
- data/site/outdated/rdd/mailbox.rrd.m +0 -228
- data/site/outdated/rdd/port.rrd.m +0 -69
- data/site/outdated/rdd/tmail.rrd.m +0 -33
- data/site/outdated/rdd/usage.rd.m +0 -247
- data/site/quickstart/index.html +0 -69
- data/site/quickstart/quickstart.html +0 -52
- data/site/quickstart/usage.html +0 -193
- data/site/reference/address.html +0 -247
- data/site/reference/config.html +0 -30
- data/site/reference/index.html +0 -101
- data/site/reference/mail.html +0 -726
- data/site/reference/mailbox.html +0 -245
- data/site/reference/port.html +0 -75
- data/site/reference/tmail.html +0 -35
- data/work/script/make +0 -26
- data/work/script/rdoc +0 -39
- data/work/script/setup +0 -1616
- data/work/script/test +0 -30
data/log/Fixme.txt
DELETED
data/log/Testlog.txt
DELETED
@@ -1,2340 +0,0 @@
|
|
1
|
-
= Solo Test @ Sun Feb 10 17:10:47 -0500 2008
|
2
|
-
|
3
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
4
|
-
test/test_utils.rb 3 3 0 0 [PASS]
|
5
|
-
test/test_attachments.rb 3 4 0 0 [PASS]
|
6
|
-
test/test_encode.rb 1 26 0 0 [PASS]
|
7
|
-
test/test_mbox.rb 9 59 0 0 [PASS]
|
8
|
-
test/test_helper.rb 0 0 0 0 [PASS]
|
9
|
-
test/test_header.rb 67 312 1 0 [FAIL]
|
10
|
-
test/test_base64.rb 3 1430 0 0 [PASS]
|
11
|
-
test/test_address.rb 29 1686 0 1 [FAIL]
|
12
|
-
test/test_mail.rb 44 209 0 0 [PASS]
|
13
|
-
test/test_scanner.rb 3 117 0 0 [PASS]
|
14
|
-
test/test_port.rb 31 118 0 0 [PASS]
|
15
|
-
test/test_quote.rb 11 11 0 0 [PASS]
|
16
|
-
TOTAL 204 3975 1 1
|
17
|
-
|
18
|
-
-- Failures and Errors --
|
19
|
-
|
20
|
-
Loaded suite test/test_header
|
21
|
-
Started
|
22
|
-
..F................................................................
|
23
|
-
Finished in 0.065895 seconds.
|
24
|
-
|
25
|
-
1) Failure:
|
26
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
27
|
-
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
28
|
-
test/test_header.rb:756:in `test_ATTRS']:
|
29
|
-
<"attachment"> expected but was
|
30
|
-
<nil>.
|
31
|
-
|
32
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
33
|
-
Loaded suite test/test_address
|
34
|
-
Started
|
35
|
-
...............E.............
|
36
|
-
Finished in 0.120607 seconds.
|
37
|
-
|
38
|
-
1) Error:
|
39
|
-
test_parse__rawjp(TestAddress):
|
40
|
-
TMail::SyntaxError: parse error on token error
|
41
|
-
parser.y:379:in `on_error'
|
42
|
-
parser.y:379:in `_racc_yyparse_c'
|
43
|
-
parser.y:375:in `scan'
|
44
|
-
parser.y:375:in `parse_in'
|
45
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
46
|
-
racc/parser.rb:152:in `__send__'
|
47
|
-
racc/parser.rb:152:in `yyparse'
|
48
|
-
parser.y:366:in `parse'
|
49
|
-
parser.y:344:in `parse'
|
50
|
-
./test/../lib/tmail/address.rb:44:in `parse'
|
51
|
-
test/test_address.rb:90:in `validate_case__address'
|
52
|
-
test/test_address.rb:248:in `_test_parse__euc'
|
53
|
-
test/test_address.rb:237:in `test_parse__rawjp'
|
54
|
-
|
55
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
56
|
-
|
57
|
-
|
58
|
-
= Solo Test @ Sat Feb 23 02:29:09 +1100 2008
|
59
|
-
|
60
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
61
|
-
test/test_address.rb 29 1686 0 1 [FAIL]
|
62
|
-
test/test_attachments.rb 3 4 0 0 [PASS]
|
63
|
-
test/test_base64.rb 3 1430 0 0 [PASS]
|
64
|
-
test/test_encode.rb 1 26 0 0 [PASS]
|
65
|
-
test/test_header.rb 67 312 1 0 [FAIL]
|
66
|
-
test/test_helper.rb 0 0 0 0 [PASS]
|
67
|
-
test/test_mail.rb 44 212 0 0 [PASS]
|
68
|
-
test/test_mbox.rb 12 63 0 0 [PASS]
|
69
|
-
test/test_port.rb 31 118 0 0 [PASS]
|
70
|
-
test/test_quote.rb 11 11 0 0 [PASS]
|
71
|
-
test/test_scanner.rb 3 117 0 0 [PASS]
|
72
|
-
test/test_utils.rb 3 3 0 0 [PASS]
|
73
|
-
TOTAL 207 3982 1 1
|
74
|
-
|
75
|
-
-- Failures and Errors --
|
76
|
-
|
77
|
-
Loaded suite test/test_address
|
78
|
-
Started
|
79
|
-
...............E.............
|
80
|
-
Finished in 0.092597 seconds.
|
81
|
-
|
82
|
-
1) Error:
|
83
|
-
test_parse__rawjp(TestAddress):
|
84
|
-
TMail::SyntaxError: parse error on token error
|
85
|
-
parser.y:379:in `on_error'
|
86
|
-
parser.y:379:in `_racc_yyparse_c'
|
87
|
-
parser.y:375:in `scan'
|
88
|
-
parser.y:375:in `parse_in'
|
89
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
90
|
-
racc/parser.rb:152:in `__send__'
|
91
|
-
racc/parser.rb:152:in `yyparse'
|
92
|
-
parser.y:366:in `parse'
|
93
|
-
parser.y:344:in `parse'
|
94
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
95
|
-
test/test_address.rb:90:in `validate_case__address'
|
96
|
-
test/test_address.rb:248:in `_test_parse__euc'
|
97
|
-
test/test_address.rb:237:in `test_parse__rawjp'
|
98
|
-
|
99
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
100
|
-
Loaded suite test/test_header
|
101
|
-
Started
|
102
|
-
..F................................................................
|
103
|
-
Finished in 0.045103 seconds.
|
104
|
-
|
105
|
-
1) Failure:
|
106
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
107
|
-
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
108
|
-
test/test_header.rb:756:in `test_ATTRS']:
|
109
|
-
<"attachment"> expected but was
|
110
|
-
<nil>.
|
111
|
-
|
112
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
113
|
-
|
114
|
-
|
115
|
-
= Solo Test @ Fri Mar 14 22:59:26 +1100 2008
|
116
|
-
|
117
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
118
|
-
test/test_address.rb 29 1686 0 1 [FAIL]
|
119
|
-
test/test_attachments.rb 3 4 0 0 [PASS]
|
120
|
-
test/test_base64.rb 3 1430 0 0 [PASS]
|
121
|
-
test/test_encode.rb 1 26 0 0 [PASS]
|
122
|
-
test/test_header.rb 67 312 1 0 [FAIL]
|
123
|
-
test/test_helper.rb 0 0 0 0 [PASS]
|
124
|
-
test/test_mail.rb 47 215 0 0 [PASS]
|
125
|
-
test/test_mbox.rb 12 63 0 0 [PASS]
|
126
|
-
test/test_port.rb 31 118 0 0 [PASS]
|
127
|
-
test/test_quote.rb 11 11 0 0 [PASS]
|
128
|
-
test/test_scanner.rb 3 117 0 0 [PASS]
|
129
|
-
test/test_utils.rb 3 3 0 0 [PASS]
|
130
|
-
TOTAL 210 3985 1 1
|
131
|
-
|
132
|
-
-- Failures and Errors --
|
133
|
-
|
134
|
-
Loaded suite test/test_address
|
135
|
-
Started
|
136
|
-
...............E.............
|
137
|
-
Finished in 0.09372 seconds.
|
138
|
-
|
139
|
-
1) Error:
|
140
|
-
test_parse__rawjp(TestAddress):
|
141
|
-
TMail::SyntaxError: parse error on token error
|
142
|
-
parser.y:379:in `on_error'
|
143
|
-
parser.y:379:in `_racc_yyparse_c'
|
144
|
-
parser.y:375:in `scan'
|
145
|
-
parser.y:375:in `parse_in'
|
146
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
147
|
-
racc/parser.rb:152:in `__send__'
|
148
|
-
racc/parser.rb:152:in `yyparse'
|
149
|
-
parser.y:366:in `parse'
|
150
|
-
parser.y:344:in `parse'
|
151
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
152
|
-
test/test_address.rb:90:in `validate_case__address'
|
153
|
-
test/test_address.rb:248:in `_test_parse__euc'
|
154
|
-
test/test_address.rb:237:in `test_parse__rawjp'
|
155
|
-
|
156
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
157
|
-
Loaded suite test/test_header
|
158
|
-
Started
|
159
|
-
..F................................................................
|
160
|
-
Finished in 0.044237 seconds.
|
161
|
-
|
162
|
-
1) Failure:
|
163
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
164
|
-
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
165
|
-
test/test_header.rb:756:in `test_ATTRS']:
|
166
|
-
<"attachment"> expected but was
|
167
|
-
<nil>.
|
168
|
-
|
169
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
170
|
-
|
171
|
-
|
172
|
-
= Cross Test @ Fri Mar 14 23:00:58 +1100 2008
|
173
|
-
|
174
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
175
|
-
test/test_address.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
176
|
-
test/test_address.rb test/test_attachments.rb 32 1690 0 1 [FAIL]
|
177
|
-
test/test_address.rb test/test_base64.rb 32 3116 0 1 [FAIL]
|
178
|
-
test/test_address.rb test/test_encode.rb 30 1712 0 1 [FAIL]
|
179
|
-
test/test_address.rb test/test_header.rb 96 1998 1 1 [FAIL]
|
180
|
-
test/test_address.rb test/test_helper.rb 29 1686 0 1 [FAIL]
|
181
|
-
test/test_address.rb test/test_mail.rb 76 1901 0 1 [FAIL]
|
182
|
-
test/test_address.rb test/test_mbox.rb 41 1749 0 1 [FAIL]
|
183
|
-
test/test_address.rb test/test_port.rb 60 1804 0 1 [FAIL]
|
184
|
-
test/test_address.rb test/test_quote.rb 40 1697 0 1 [FAIL]
|
185
|
-
test/test_address.rb test/test_scanner.rb 32 1803 0 1 [FAIL]
|
186
|
-
test/test_address.rb test/test_utils.rb 32 1689 0 1 [FAIL]
|
187
|
-
test/test_attachments.rb test/test_address.rb 32 1690 0 1 [FAIL]
|
188
|
-
test/test_attachments.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
189
|
-
test/test_attachments.rb test/test_base64.rb 6 1434 0 0 [PASS]
|
190
|
-
test/test_attachments.rb test/test_encode.rb 4 30 0 0 [PASS]
|
191
|
-
test/test_attachments.rb test/test_header.rb 70 316 1 0 [FAIL]
|
192
|
-
test/test_attachments.rb test/test_helper.rb 3 4 0 0 [PASS]
|
193
|
-
test/test_attachments.rb test/test_mail.rb 50 219 0 0 [PASS]
|
194
|
-
test/test_attachments.rb test/test_mbox.rb 15 67 0 0 [PASS]
|
195
|
-
test/test_attachments.rb test/test_port.rb 34 122 0 0 [PASS]
|
196
|
-
test/test_attachments.rb test/test_quote.rb 14 15 0 0 [PASS]
|
197
|
-
test/test_attachments.rb test/test_scanner.rb 6 121 0 0 [PASS]
|
198
|
-
test/test_attachments.rb test/test_utils.rb 6 7 0 0 [PASS]
|
199
|
-
test/test_base64.rb test/test_address.rb 32 3116 0 1 [FAIL]
|
200
|
-
test/test_base64.rb test/test_attachments.rb 6 1434 0 0 [PASS]
|
201
|
-
test/test_base64.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
202
|
-
test/test_base64.rb test/test_encode.rb 4 1456 0 0 [PASS]
|
203
|
-
test/test_base64.rb test/test_header.rb 70 1742 1 0 [FAIL]
|
204
|
-
test/test_base64.rb test/test_helper.rb 3 1430 0 0 [PASS]
|
205
|
-
test/test_base64.rb test/test_mail.rb 50 1645 0 0 [PASS]
|
206
|
-
test/test_base64.rb test/test_mbox.rb 15 1493 0 0 [PASS]
|
207
|
-
test/test_base64.rb test/test_port.rb 34 1548 0 0 [PASS]
|
208
|
-
test/test_base64.rb test/test_quote.rb 14 1441 0 0 [PASS]
|
209
|
-
test/test_base64.rb test/test_scanner.rb 6 1547 0 0 [PASS]
|
210
|
-
test/test_base64.rb test/test_utils.rb 6 1433 0 0 [PASS]
|
211
|
-
test/test_encode.rb test/test_address.rb 30 1712 0 1 [FAIL]
|
212
|
-
test/test_encode.rb test/test_attachments.rb 4 30 0 0 [PASS]
|
213
|
-
test/test_encode.rb test/test_base64.rb 4 1456 0 0 [PASS]
|
214
|
-
test/test_encode.rb test/test_encode.rb 1 26 0 0 [PASS]
|
215
|
-
test/test_encode.rb test/test_header.rb 68 338 1 0 [FAIL]
|
216
|
-
test/test_encode.rb test/test_helper.rb 1 26 0 0 [PASS]
|
217
|
-
test/test_encode.rb test/test_mail.rb 48 241 0 0 [PASS]
|
218
|
-
test/test_encode.rb test/test_mbox.rb 13 89 0 0 [PASS]
|
219
|
-
test/test_encode.rb test/test_port.rb 32 144 0 0 [PASS]
|
220
|
-
test/test_encode.rb test/test_quote.rb 12 37 0 0 [PASS]
|
221
|
-
test/test_encode.rb test/test_scanner.rb 4 143 0 0 [PASS]
|
222
|
-
test/test_encode.rb test/test_utils.rb 4 29 0 0 [PASS]
|
223
|
-
test/test_header.rb test/test_address.rb 96 1998 1 1 [FAIL]
|
224
|
-
test/test_header.rb test/test_attachments.rb 70 316 1 0 [FAIL]
|
225
|
-
test/test_header.rb test/test_base64.rb 70 1742 1 0 [FAIL]
|
226
|
-
test/test_header.rb test/test_encode.rb 68 338 1 0 [FAIL]
|
227
|
-
test/test_header.rb test/test_header.rb 67 312 1 0 [FAIL]
|
228
|
-
test/test_header.rb test/test_helper.rb 67 312 1 0 [FAIL]
|
229
|
-
test/test_header.rb test/test_mail.rb 114 527 1 0 [FAIL]
|
230
|
-
test/test_header.rb test/test_mbox.rb 79 375 1 0 [FAIL]
|
231
|
-
test/test_header.rb test/test_port.rb 98 430 1 0 [FAIL]
|
232
|
-
test/test_header.rb test/test_quote.rb 78 323 1 0 [FAIL]
|
233
|
-
test/test_header.rb test/test_scanner.rb 70 429 1 0 [FAIL]
|
234
|
-
test/test_header.rb test/test_utils.rb 70 315 1 0 [FAIL]
|
235
|
-
test/test_helper.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
236
|
-
test/test_helper.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
237
|
-
test/test_helper.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
238
|
-
test/test_helper.rb test/test_encode.rb 1 26 0 0 [PASS]
|
239
|
-
test/test_helper.rb test/test_header.rb 67 312 1 0 [FAIL]
|
240
|
-
test/test_helper.rb test/test_helper.rb 210 3985 1 1 [FAIL]
|
241
|
-
test/test_helper.rb test/test_mail.rb 47 215 0 0 [PASS]
|
242
|
-
test/test_helper.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
243
|
-
test/test_helper.rb test/test_port.rb 31 118 0 0 [PASS]
|
244
|
-
test/test_helper.rb test/test_quote.rb 11 11 0 0 [PASS]
|
245
|
-
test/test_helper.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
246
|
-
test/test_helper.rb test/test_utils.rb 3 3 0 0 [PASS]
|
247
|
-
test/test_mail.rb test/test_address.rb 76 1901 0 1 [FAIL]
|
248
|
-
test/test_mail.rb test/test_attachments.rb 50 219 0 0 [PASS]
|
249
|
-
test/test_mail.rb test/test_base64.rb 50 1645 0 0 [PASS]
|
250
|
-
test/test_mail.rb test/test_encode.rb 48 241 0 0 [PASS]
|
251
|
-
test/test_mail.rb test/test_header.rb 114 527 1 0 [FAIL]
|
252
|
-
test/test_mail.rb test/test_helper.rb 47 215 0 0 [PASS]
|
253
|
-
test/test_mail.rb test/test_mail.rb 47 215 0 0 [PASS]
|
254
|
-
test/test_mail.rb test/test_mbox.rb 59 278 0 0 [PASS]
|
255
|
-
test/test_mail.rb test/test_port.rb 78 333 0 0 [PASS]
|
256
|
-
test/test_mail.rb test/test_quote.rb 58 226 0 0 [PASS]
|
257
|
-
test/test_mail.rb test/test_scanner.rb 50 332 0 0 [PASS]
|
258
|
-
test/test_mail.rb test/test_utils.rb 50 218 0 0 [PASS]
|
259
|
-
test/test_mbox.rb test/test_address.rb 41 1749 0 1 [FAIL]
|
260
|
-
test/test_mbox.rb test/test_attachments.rb 15 67 0 0 [PASS]
|
261
|
-
test/test_mbox.rb test/test_base64.rb 15 1493 0 0 [PASS]
|
262
|
-
test/test_mbox.rb test/test_encode.rb 13 89 0 0 [PASS]
|
263
|
-
test/test_mbox.rb test/test_header.rb 79 375 1 0 [FAIL]
|
264
|
-
test/test_mbox.rb test/test_helper.rb 12 63 0 0 [PASS]
|
265
|
-
test/test_mbox.rb test/test_mail.rb 59 278 0 0 [PASS]
|
266
|
-
test/test_mbox.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
267
|
-
test/test_mbox.rb test/test_port.rb 43 181 0 0 [PASS]
|
268
|
-
test/test_mbox.rb test/test_quote.rb 23 74 0 0 [PASS]
|
269
|
-
test/test_mbox.rb test/test_scanner.rb 15 180 0 0 [PASS]
|
270
|
-
test/test_mbox.rb test/test_utils.rb 15 66 0 0 [PASS]
|
271
|
-
test/test_port.rb test/test_address.rb 60 1804 0 1 [FAIL]
|
272
|
-
test/test_port.rb test/test_attachments.rb 34 122 0 0 [PASS]
|
273
|
-
test/test_port.rb test/test_base64.rb 34 1548 0 0 [PASS]
|
274
|
-
test/test_port.rb test/test_encode.rb 32 144 0 0 [PASS]
|
275
|
-
test/test_port.rb test/test_header.rb 98 430 1 0 [FAIL]
|
276
|
-
test/test_port.rb test/test_helper.rb 31 118 0 0 [PASS]
|
277
|
-
test/test_port.rb test/test_mail.rb 78 333 0 0 [PASS]
|
278
|
-
test/test_port.rb test/test_mbox.rb 43 181 0 0 [PASS]
|
279
|
-
test/test_port.rb test/test_port.rb 31 118 0 0 [PASS]
|
280
|
-
test/test_port.rb test/test_quote.rb 42 129 0 0 [PASS]
|
281
|
-
test/test_port.rb test/test_scanner.rb 34 235 0 0 [PASS]
|
282
|
-
test/test_port.rb test/test_utils.rb 34 121 0 0 [PASS]
|
283
|
-
test/test_quote.rb test/test_address.rb 40 1697 0 1 [FAIL]
|
284
|
-
test/test_quote.rb test/test_attachments.rb 14 15 0 0 [PASS]
|
285
|
-
test/test_quote.rb test/test_base64.rb 14 1441 0 0 [PASS]
|
286
|
-
test/test_quote.rb test/test_encode.rb 12 37 0 0 [PASS]
|
287
|
-
test/test_quote.rb test/test_header.rb 78 323 1 0 [FAIL]
|
288
|
-
test/test_quote.rb test/test_helper.rb 11 11 0 0 [PASS]
|
289
|
-
test/test_quote.rb test/test_mail.rb 58 226 0 0 [PASS]
|
290
|
-
test/test_quote.rb test/test_mbox.rb 23 74 0 0 [PASS]
|
291
|
-
test/test_quote.rb test/test_port.rb 42 129 0 0 [PASS]
|
292
|
-
test/test_quote.rb test/test_quote.rb 11 11 0 0 [PASS]
|
293
|
-
test/test_quote.rb test/test_scanner.rb 14 128 0 0 [PASS]
|
294
|
-
test/test_quote.rb test/test_utils.rb 14 14 0 0 [PASS]
|
295
|
-
test/test_scanner.rb test/test_address.rb 32 1803 0 1 [FAIL]
|
296
|
-
test/test_scanner.rb test/test_attachments.rb 6 121 0 0 [PASS]
|
297
|
-
test/test_scanner.rb test/test_base64.rb 6 1547 0 0 [PASS]
|
298
|
-
test/test_scanner.rb test/test_encode.rb 4 143 0 0 [PASS]
|
299
|
-
test/test_scanner.rb test/test_header.rb 70 429 1 0 [FAIL]
|
300
|
-
test/test_scanner.rb test/test_helper.rb 3 117 0 0 [PASS]
|
301
|
-
test/test_scanner.rb test/test_mail.rb 50 332 0 0 [PASS]
|
302
|
-
test/test_scanner.rb test/test_mbox.rb 15 180 0 0 [PASS]
|
303
|
-
test/test_scanner.rb test/test_port.rb 34 235 0 0 [PASS]
|
304
|
-
test/test_scanner.rb test/test_quote.rb 14 128 0 0 [PASS]
|
305
|
-
test/test_scanner.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
306
|
-
test/test_scanner.rb test/test_utils.rb 6 120 0 0 [PASS]
|
307
|
-
test/test_utils.rb test/test_address.rb 32 1689 0 1 [FAIL]
|
308
|
-
test/test_utils.rb test/test_attachments.rb 6 7 0 0 [PASS]
|
309
|
-
test/test_utils.rb test/test_base64.rb 6 1433 0 0 [PASS]
|
310
|
-
test/test_utils.rb test/test_encode.rb 4 29 0 0 [PASS]
|
311
|
-
test/test_utils.rb test/test_header.rb 70 315 1 0 [FAIL]
|
312
|
-
test/test_utils.rb test/test_helper.rb 3 3 0 0 [PASS]
|
313
|
-
test/test_utils.rb test/test_mail.rb 50 218 0 0 [PASS]
|
314
|
-
test/test_utils.rb test/test_mbox.rb 15 66 0 0 [PASS]
|
315
|
-
test/test_utils.rb test/test_port.rb 34 121 0 0 [PASS]
|
316
|
-
test/test_utils.rb test/test_quote.rb 14 14 0 0 [PASS]
|
317
|
-
test/test_utils.rb test/test_scanner.rb 6 120 0 0 [PASS]
|
318
|
-
test/test_utils.rb test/test_utils.rb 3 3 0 0 [PASS]
|
319
|
-
TOTAL 5040 95640 24 24
|
320
|
-
|
321
|
-
-- Failures and Errors --
|
322
|
-
|
323
|
-
Loaded suite -e
|
324
|
-
Started
|
325
|
-
...............E.............
|
326
|
-
Finished in 0.09302 seconds.
|
327
|
-
|
328
|
-
1) Error:
|
329
|
-
test_parse__rawjp(TestAddress):
|
330
|
-
TMail::SyntaxError: parse error on token error
|
331
|
-
parser.y:379:in `on_error'
|
332
|
-
parser.y:379:in `_racc_yyparse_c'
|
333
|
-
parser.y:375:in `scan'
|
334
|
-
parser.y:375:in `parse_in'
|
335
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
336
|
-
racc/parser.rb:152:in `__send__'
|
337
|
-
racc/parser.rb:152:in `yyparse'
|
338
|
-
parser.y:366:in `parse'
|
339
|
-
parser.y:344:in `parse'
|
340
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
341
|
-
./test/test_address.rb:90:in `validate_case__address'
|
342
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
343
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
344
|
-
|
345
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
346
|
-
Loaded suite -e
|
347
|
-
Started
|
348
|
-
...............E................
|
349
|
-
Finished in 0.104716 seconds.
|
350
|
-
|
351
|
-
1) Error:
|
352
|
-
test_parse__rawjp(TestAddress):
|
353
|
-
TMail::SyntaxError: parse error on token error
|
354
|
-
parser.y:379:in `on_error'
|
355
|
-
parser.y:379:in `_racc_yyparse_c'
|
356
|
-
parser.y:375:in `scan'
|
357
|
-
parser.y:375:in `parse_in'
|
358
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
359
|
-
racc/parser.rb:152:in `__send__'
|
360
|
-
racc/parser.rb:152:in `yyparse'
|
361
|
-
parser.y:366:in `parse'
|
362
|
-
parser.y:344:in `parse'
|
363
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
364
|
-
./test/test_address.rb:90:in `validate_case__address'
|
365
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
366
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
367
|
-
|
368
|
-
32 tests, 1690 assertions, 0 failures, 1 errors
|
369
|
-
Loaded suite -e
|
370
|
-
Started
|
371
|
-
...............E................
|
372
|
-
Finished in 0.179128 seconds.
|
373
|
-
|
374
|
-
1) Error:
|
375
|
-
test_parse__rawjp(TestAddress):
|
376
|
-
TMail::SyntaxError: parse error on token error
|
377
|
-
parser.y:379:in `on_error'
|
378
|
-
parser.y:379:in `_racc_yyparse_c'
|
379
|
-
parser.y:375:in `scan'
|
380
|
-
parser.y:375:in `parse_in'
|
381
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
382
|
-
racc/parser.rb:152:in `__send__'
|
383
|
-
racc/parser.rb:152:in `yyparse'
|
384
|
-
parser.y:366:in `parse'
|
385
|
-
parser.y:344:in `parse'
|
386
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
387
|
-
./test/test_address.rb:90:in `validate_case__address'
|
388
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
389
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
390
|
-
|
391
|
-
32 tests, 3116 assertions, 0 failures, 1 errors
|
392
|
-
Loaded suite -e
|
393
|
-
Started
|
394
|
-
...............E..............
|
395
|
-
Finished in 0.102972 seconds.
|
396
|
-
|
397
|
-
1) Error:
|
398
|
-
test_parse__rawjp(TestAddress):
|
399
|
-
TMail::SyntaxError: parse error on token error
|
400
|
-
parser.y:379:in `on_error'
|
401
|
-
parser.y:379:in `_racc_yyparse_c'
|
402
|
-
parser.y:375:in `scan'
|
403
|
-
parser.y:375:in `parse_in'
|
404
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
405
|
-
racc/parser.rb:152:in `__send__'
|
406
|
-
racc/parser.rb:152:in `yyparse'
|
407
|
-
parser.y:366:in `parse'
|
408
|
-
parser.y:344:in `parse'
|
409
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
410
|
-
./test/test_address.rb:90:in `validate_case__address'
|
411
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
412
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
413
|
-
|
414
|
-
30 tests, 1712 assertions, 0 failures, 1 errors
|
415
|
-
Loaded suite -e
|
416
|
-
Started
|
417
|
-
..F.............................................................................E...............
|
418
|
-
Finished in 0.125127 seconds.
|
419
|
-
|
420
|
-
1) Failure:
|
421
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
422
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
423
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
424
|
-
<"attachment"> expected but was
|
425
|
-
<nil>.
|
426
|
-
|
427
|
-
2) Error:
|
428
|
-
test_parse__rawjp(TestAddress):
|
429
|
-
TMail::SyntaxError: parse error on token error
|
430
|
-
parser.y:379:in `on_error'
|
431
|
-
parser.y:379:in `_racc_yyparse_c'
|
432
|
-
parser.y:375:in `scan'
|
433
|
-
parser.y:375:in `parse_in'
|
434
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
435
|
-
racc/parser.rb:152:in `__send__'
|
436
|
-
racc/parser.rb:152:in `yyparse'
|
437
|
-
parser.y:366:in `parse'
|
438
|
-
parser.y:344:in `parse'
|
439
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
440
|
-
./test/test_address.rb:90:in `validate_case__address'
|
441
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
442
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
443
|
-
|
444
|
-
96 tests, 1998 assertions, 1 failures, 1 errors
|
445
|
-
Loaded suite -e
|
446
|
-
Started
|
447
|
-
...............E.............
|
448
|
-
Finished in 0.092103 seconds.
|
449
|
-
|
450
|
-
1) Error:
|
451
|
-
test_parse__rawjp(TestAddress):
|
452
|
-
TMail::SyntaxError: parse error on token error
|
453
|
-
parser.y:379:in `on_error'
|
454
|
-
parser.y:379:in `_racc_yyparse_c'
|
455
|
-
parser.y:375:in `scan'
|
456
|
-
parser.y:375:in `parse_in'
|
457
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
458
|
-
racc/parser.rb:152:in `__send__'
|
459
|
-
racc/parser.rb:152:in `yyparse'
|
460
|
-
parser.y:366:in `parse'
|
461
|
-
parser.y:344:in `parse'
|
462
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
463
|
-
./test/test_address.rb:90:in `validate_case__address'
|
464
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
465
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
466
|
-
|
467
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
468
|
-
Loaded suite -e
|
469
|
-
Started
|
470
|
-
...............E............................................................
|
471
|
-
Finished in 0.145643 seconds.
|
472
|
-
|
473
|
-
1) Error:
|
474
|
-
test_parse__rawjp(TestAddress):
|
475
|
-
TMail::SyntaxError: parse error on token error
|
476
|
-
parser.y:379:in `on_error'
|
477
|
-
parser.y:379:in `_racc_yyparse_c'
|
478
|
-
parser.y:375:in `scan'
|
479
|
-
parser.y:375:in `parse_in'
|
480
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
481
|
-
racc/parser.rb:152:in `__send__'
|
482
|
-
racc/parser.rb:152:in `yyparse'
|
483
|
-
parser.y:366:in `parse'
|
484
|
-
parser.y:344:in `parse'
|
485
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
486
|
-
./test/test_address.rb:90:in `validate_case__address'
|
487
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
488
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
489
|
-
|
490
|
-
76 tests, 1901 assertions, 0 failures, 1 errors
|
491
|
-
Loaded suite -e
|
492
|
-
Started
|
493
|
-
...........................E.............
|
494
|
-
Finished in 0.155874 seconds.
|
495
|
-
|
496
|
-
1) Error:
|
497
|
-
test_parse__rawjp(TestAddress):
|
498
|
-
TMail::SyntaxError: parse error on token error
|
499
|
-
parser.y:379:in `on_error'
|
500
|
-
parser.y:379:in `_racc_yyparse_c'
|
501
|
-
parser.y:375:in `scan'
|
502
|
-
parser.y:375:in `parse_in'
|
503
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
504
|
-
racc/parser.rb:152:in `__send__'
|
505
|
-
racc/parser.rb:152:in `yyparse'
|
506
|
-
parser.y:366:in `parse'
|
507
|
-
parser.y:344:in `parse'
|
508
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
509
|
-
./test/test_address.rb:90:in `validate_case__address'
|
510
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
511
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
512
|
-
|
513
|
-
41 tests, 1749 assertions, 0 failures, 1 errors
|
514
|
-
Loaded suite -e
|
515
|
-
Started
|
516
|
-
..............................................E.............
|
517
|
-
Finished in 0.18006 seconds.
|
518
|
-
|
519
|
-
1) Error:
|
520
|
-
test_parse__rawjp(TestAddress):
|
521
|
-
TMail::SyntaxError: parse error on token error
|
522
|
-
parser.y:379:in `on_error'
|
523
|
-
parser.y:379:in `_racc_yyparse_c'
|
524
|
-
parser.y:375:in `scan'
|
525
|
-
parser.y:375:in `parse_in'
|
526
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
527
|
-
racc/parser.rb:152:in `__send__'
|
528
|
-
racc/parser.rb:152:in `yyparse'
|
529
|
-
parser.y:366:in `parse'
|
530
|
-
parser.y:344:in `parse'
|
531
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
532
|
-
./test/test_address.rb:90:in `validate_case__address'
|
533
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
534
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
535
|
-
|
536
|
-
60 tests, 1804 assertions, 0 failures, 1 errors
|
537
|
-
Loaded suite -e
|
538
|
-
Started
|
539
|
-
...............E........................
|
540
|
-
Finished in 0.101734 seconds.
|
541
|
-
|
542
|
-
1) Error:
|
543
|
-
test_parse__rawjp(TestAddress):
|
544
|
-
TMail::SyntaxError: parse error on token error
|
545
|
-
parser.y:379:in `on_error'
|
546
|
-
parser.y:379:in `_racc_yyparse_c'
|
547
|
-
parser.y:375:in `scan'
|
548
|
-
parser.y:375:in `parse_in'
|
549
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
550
|
-
racc/parser.rb:152:in `__send__'
|
551
|
-
racc/parser.rb:152:in `yyparse'
|
552
|
-
parser.y:366:in `parse'
|
553
|
-
parser.y:344:in `parse'
|
554
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
555
|
-
./test/test_address.rb:90:in `validate_case__address'
|
556
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
557
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
558
|
-
|
559
|
-
40 tests, 1697 assertions, 0 failures, 1 errors
|
560
|
-
Loaded suite -e
|
561
|
-
Started
|
562
|
-
..................E.............
|
563
|
-
Finished in 0.100893 seconds.
|
564
|
-
|
565
|
-
1) Error:
|
566
|
-
test_parse__rawjp(TestAddress):
|
567
|
-
TMail::SyntaxError: parse error on token error
|
568
|
-
parser.y:379:in `on_error'
|
569
|
-
parser.y:379:in `_racc_yyparse_c'
|
570
|
-
parser.y:375:in `scan'
|
571
|
-
parser.y:375:in `parse_in'
|
572
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
573
|
-
racc/parser.rb:152:in `__send__'
|
574
|
-
racc/parser.rb:152:in `yyparse'
|
575
|
-
parser.y:366:in `parse'
|
576
|
-
parser.y:344:in `parse'
|
577
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
578
|
-
./test/test_address.rb:90:in `validate_case__address'
|
579
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
580
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
581
|
-
|
582
|
-
32 tests, 1803 assertions, 0 failures, 1 errors
|
583
|
-
Loaded suite -e
|
584
|
-
Started
|
585
|
-
...............E................
|
586
|
-
Finished in 0.092059 seconds.
|
587
|
-
|
588
|
-
1) Error:
|
589
|
-
test_parse__rawjp(TestAddress):
|
590
|
-
TMail::SyntaxError: parse error on token error
|
591
|
-
parser.y:379:in `on_error'
|
592
|
-
parser.y:379:in `_racc_yyparse_c'
|
593
|
-
parser.y:375:in `scan'
|
594
|
-
parser.y:375:in `parse_in'
|
595
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
596
|
-
racc/parser.rb:152:in `__send__'
|
597
|
-
racc/parser.rb:152:in `yyparse'
|
598
|
-
parser.y:366:in `parse'
|
599
|
-
parser.y:344:in `parse'
|
600
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
601
|
-
./test/test_address.rb:90:in `validate_case__address'
|
602
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
603
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
604
|
-
|
605
|
-
32 tests, 1689 assertions, 0 failures, 1 errors
|
606
|
-
Loaded suite -e
|
607
|
-
Started
|
608
|
-
...............E................
|
609
|
-
Finished in 0.096896 seconds.
|
610
|
-
|
611
|
-
1) Error:
|
612
|
-
test_parse__rawjp(TestAddress):
|
613
|
-
TMail::SyntaxError: parse error on token error
|
614
|
-
parser.y:379:in `on_error'
|
615
|
-
parser.y:379:in `_racc_yyparse_c'
|
616
|
-
parser.y:375:in `scan'
|
617
|
-
parser.y:375:in `parse_in'
|
618
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
619
|
-
racc/parser.rb:152:in `__send__'
|
620
|
-
racc/parser.rb:152:in `yyparse'
|
621
|
-
parser.y:366:in `parse'
|
622
|
-
parser.y:344:in `parse'
|
623
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
624
|
-
./test/test_address.rb:90:in `validate_case__address'
|
625
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
626
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
627
|
-
|
628
|
-
32 tests, 1690 assertions, 0 failures, 1 errors
|
629
|
-
Loaded suite -e
|
630
|
-
Started
|
631
|
-
..F...................................................................
|
632
|
-
Finished in 0.050509 seconds.
|
633
|
-
|
634
|
-
1) Failure:
|
635
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
636
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
637
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
638
|
-
<"attachment"> expected but was
|
639
|
-
<nil>.
|
640
|
-
|
641
|
-
70 tests, 316 assertions, 1 failures, 0 errors
|
642
|
-
Loaded suite -e
|
643
|
-
Started
|
644
|
-
...............E................
|
645
|
-
Finished in 0.177225 seconds.
|
646
|
-
|
647
|
-
1) Error:
|
648
|
-
test_parse__rawjp(TestAddress):
|
649
|
-
TMail::SyntaxError: parse error on token error
|
650
|
-
parser.y:379:in `on_error'
|
651
|
-
parser.y:379:in `_racc_yyparse_c'
|
652
|
-
parser.y:375:in `scan'
|
653
|
-
parser.y:375:in `parse_in'
|
654
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
655
|
-
racc/parser.rb:152:in `__send__'
|
656
|
-
racc/parser.rb:152:in `yyparse'
|
657
|
-
parser.y:366:in `parse'
|
658
|
-
parser.y:344:in `parse'
|
659
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
660
|
-
./test/test_address.rb:90:in `validate_case__address'
|
661
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
662
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
663
|
-
|
664
|
-
32 tests, 3116 assertions, 0 failures, 1 errors
|
665
|
-
Loaded suite -e
|
666
|
-
Started
|
667
|
-
..F...................................................................
|
668
|
-
Finished in 0.122517 seconds.
|
669
|
-
|
670
|
-
1) Failure:
|
671
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
672
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
673
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
674
|
-
<"attachment"> expected but was
|
675
|
-
<nil>.
|
676
|
-
|
677
|
-
70 tests, 1742 assertions, 1 failures, 0 errors
|
678
|
-
Loaded suite -e
|
679
|
-
Started
|
680
|
-
...............E..............
|
681
|
-
Finished in 0.102566 seconds.
|
682
|
-
|
683
|
-
1) Error:
|
684
|
-
test_parse__rawjp(TestAddress):
|
685
|
-
TMail::SyntaxError: parse error on token error
|
686
|
-
parser.y:379:in `on_error'
|
687
|
-
parser.y:379:in `_racc_yyparse_c'
|
688
|
-
parser.y:375:in `scan'
|
689
|
-
parser.y:375:in `parse_in'
|
690
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
691
|
-
racc/parser.rb:152:in `__send__'
|
692
|
-
racc/parser.rb:152:in `yyparse'
|
693
|
-
parser.y:366:in `parse'
|
694
|
-
parser.y:344:in `parse'
|
695
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
696
|
-
./test/test_address.rb:90:in `validate_case__address'
|
697
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
698
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
699
|
-
|
700
|
-
30 tests, 1712 assertions, 0 failures, 1 errors
|
701
|
-
Loaded suite -e
|
702
|
-
Started
|
703
|
-
..F.................................................................
|
704
|
-
Finished in 0.048416 seconds.
|
705
|
-
|
706
|
-
1) Failure:
|
707
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
708
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
709
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
710
|
-
<"attachment"> expected but was
|
711
|
-
<nil>.
|
712
|
-
|
713
|
-
68 tests, 338 assertions, 1 failures, 0 errors
|
714
|
-
Loaded suite -e
|
715
|
-
Started
|
716
|
-
..F.............................................................................E...............
|
717
|
-
Finished in 0.124603 seconds.
|
718
|
-
|
719
|
-
1) Failure:
|
720
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
721
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
722
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
723
|
-
<"attachment"> expected but was
|
724
|
-
<nil>.
|
725
|
-
|
726
|
-
2) Error:
|
727
|
-
test_parse__rawjp(TestAddress):
|
728
|
-
TMail::SyntaxError: parse error on token error
|
729
|
-
parser.y:379:in `on_error'
|
730
|
-
parser.y:379:in `_racc_yyparse_c'
|
731
|
-
parser.y:375:in `scan'
|
732
|
-
parser.y:375:in `parse_in'
|
733
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
734
|
-
racc/parser.rb:152:in `__send__'
|
735
|
-
racc/parser.rb:152:in `yyparse'
|
736
|
-
parser.y:366:in `parse'
|
737
|
-
parser.y:344:in `parse'
|
738
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
739
|
-
./test/test_address.rb:90:in `validate_case__address'
|
740
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
741
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
742
|
-
|
743
|
-
96 tests, 1998 assertions, 1 failures, 1 errors
|
744
|
-
Loaded suite -e
|
745
|
-
Started
|
746
|
-
..F...................................................................
|
747
|
-
Finished in 0.050084 seconds.
|
748
|
-
|
749
|
-
1) Failure:
|
750
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
751
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
752
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
753
|
-
<"attachment"> expected but was
|
754
|
-
<nil>.
|
755
|
-
|
756
|
-
70 tests, 316 assertions, 1 failures, 0 errors
|
757
|
-
Loaded suite -e
|
758
|
-
Started
|
759
|
-
..F...................................................................
|
760
|
-
Finished in 0.122198 seconds.
|
761
|
-
|
762
|
-
1) Failure:
|
763
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
764
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
765
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
766
|
-
<"attachment"> expected but was
|
767
|
-
<nil>.
|
768
|
-
|
769
|
-
70 tests, 1742 assertions, 1 failures, 0 errors
|
770
|
-
Loaded suite -e
|
771
|
-
Started
|
772
|
-
..F.................................................................
|
773
|
-
Finished in 0.048844 seconds.
|
774
|
-
|
775
|
-
1) Failure:
|
776
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
777
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
778
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
779
|
-
<"attachment"> expected but was
|
780
|
-
<nil>.
|
781
|
-
|
782
|
-
68 tests, 338 assertions, 1 failures, 0 errors
|
783
|
-
Loaded suite -e
|
784
|
-
Started
|
785
|
-
..F................................................................
|
786
|
-
Finished in 0.042681 seconds.
|
787
|
-
|
788
|
-
1) Failure:
|
789
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
790
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
791
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
792
|
-
<"attachment"> expected but was
|
793
|
-
<nil>.
|
794
|
-
|
795
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
796
|
-
Loaded suite -e
|
797
|
-
Started
|
798
|
-
..F................................................................
|
799
|
-
Finished in 0.044667 seconds.
|
800
|
-
|
801
|
-
1) Failure:
|
802
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
803
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
804
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
805
|
-
<"attachment"> expected but was
|
806
|
-
<nil>.
|
807
|
-
|
808
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
809
|
-
Loaded suite -e
|
810
|
-
Started
|
811
|
-
..F...............................................................................................................
|
812
|
-
Finished in 0.081823 seconds.
|
813
|
-
|
814
|
-
1) Failure:
|
815
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
816
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
817
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
818
|
-
<"attachment"> expected but was
|
819
|
-
<nil>.
|
820
|
-
|
821
|
-
114 tests, 527 assertions, 1 failures, 0 errors
|
822
|
-
Loaded suite -e
|
823
|
-
Started
|
824
|
-
..F............................................................................
|
825
|
-
Finished in 0.086606 seconds.
|
826
|
-
|
827
|
-
1) Failure:
|
828
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
829
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
830
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
831
|
-
<"attachment"> expected but was
|
832
|
-
<nil>.
|
833
|
-
|
834
|
-
79 tests, 375 assertions, 1 failures, 0 errors
|
835
|
-
Loaded suite -e
|
836
|
-
Started
|
837
|
-
..F...............................................................................................
|
838
|
-
Finished in 0.106947 seconds.
|
839
|
-
|
840
|
-
1) Failure:
|
841
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
842
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
843
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
844
|
-
<"attachment"> expected but was
|
845
|
-
<nil>.
|
846
|
-
|
847
|
-
98 tests, 430 assertions, 1 failures, 0 errors
|
848
|
-
Loaded suite -e
|
849
|
-
Started
|
850
|
-
..F...........................................................................
|
851
|
-
Finished in 0.047306 seconds.
|
852
|
-
|
853
|
-
1) Failure:
|
854
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
855
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
856
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
857
|
-
<"attachment"> expected but was
|
858
|
-
<nil>.
|
859
|
-
|
860
|
-
78 tests, 323 assertions, 1 failures, 0 errors
|
861
|
-
Loaded suite -e
|
862
|
-
Started
|
863
|
-
..F...................................................................
|
864
|
-
Finished in 0.047525 seconds.
|
865
|
-
|
866
|
-
1) Failure:
|
867
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
868
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
869
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
870
|
-
<"attachment"> expected but was
|
871
|
-
<nil>.
|
872
|
-
|
873
|
-
70 tests, 429 assertions, 1 failures, 0 errors
|
874
|
-
Loaded suite -e
|
875
|
-
Started
|
876
|
-
..F...................................................................
|
877
|
-
Finished in 0.045308 seconds.
|
878
|
-
|
879
|
-
1) Failure:
|
880
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
881
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
882
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
883
|
-
<"attachment"> expected but was
|
884
|
-
<nil>.
|
885
|
-
|
886
|
-
70 tests, 315 assertions, 1 failures, 0 errors
|
887
|
-
Loaded suite -e
|
888
|
-
Started
|
889
|
-
...............E.............
|
890
|
-
Finished in 0.09224 seconds.
|
891
|
-
|
892
|
-
1) Error:
|
893
|
-
test_parse__rawjp(TestAddress):
|
894
|
-
TMail::SyntaxError: parse error on token error
|
895
|
-
parser.y:379:in `on_error'
|
896
|
-
parser.y:379:in `_racc_yyparse_c'
|
897
|
-
parser.y:375:in `scan'
|
898
|
-
parser.y:375:in `parse_in'
|
899
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
900
|
-
racc/parser.rb:152:in `__send__'
|
901
|
-
racc/parser.rb:152:in `yyparse'
|
902
|
-
parser.y:366:in `parse'
|
903
|
-
parser.y:344:in `parse'
|
904
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
905
|
-
./test/test_address.rb:90:in `validate_case__address'
|
906
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
907
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
908
|
-
|
909
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
910
|
-
Loaded suite -e
|
911
|
-
Started
|
912
|
-
..F................................................................
|
913
|
-
Finished in 0.044664 seconds.
|
914
|
-
|
915
|
-
1) Failure:
|
916
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
917
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
918
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
919
|
-
<"attachment"> expected but was
|
920
|
-
<nil>.
|
921
|
-
|
922
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
923
|
-
Loaded suite .
|
924
|
-
Started
|
925
|
-
..F...........................................................................................................................E...................................................................................
|
926
|
-
Finished in 0.431701 seconds.
|
927
|
-
|
928
|
-
1) Failure:
|
929
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
930
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
931
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
932
|
-
<"attachment"> expected but was
|
933
|
-
<nil>.
|
934
|
-
|
935
|
-
2) Error:
|
936
|
-
test_parse__rawjp(TestAddress):
|
937
|
-
TMail::SyntaxError: parse error on token error
|
938
|
-
parser.y:379:in `on_error'
|
939
|
-
parser.y:379:in `_racc_yyparse_c'
|
940
|
-
parser.y:375:in `scan'
|
941
|
-
parser.y:375:in `parse_in'
|
942
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
943
|
-
racc/parser.rb:152:in `__send__'
|
944
|
-
racc/parser.rb:152:in `yyparse'
|
945
|
-
parser.y:366:in `parse'
|
946
|
-
parser.y:344:in `parse'
|
947
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
948
|
-
./test/test_address.rb:90:in `validate_case__address'
|
949
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
950
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
951
|
-
|
952
|
-
210 tests, 3985 assertions, 1 failures, 1 errors
|
953
|
-
Loaded suite -e
|
954
|
-
Started
|
955
|
-
...............E............................................................
|
956
|
-
Finished in 0.138379 seconds.
|
957
|
-
|
958
|
-
1) Error:
|
959
|
-
test_parse__rawjp(TestAddress):
|
960
|
-
TMail::SyntaxError: parse error on token error
|
961
|
-
parser.y:379:in `on_error'
|
962
|
-
parser.y:379:in `_racc_yyparse_c'
|
963
|
-
parser.y:375:in `scan'
|
964
|
-
parser.y:375:in `parse_in'
|
965
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
966
|
-
racc/parser.rb:152:in `__send__'
|
967
|
-
racc/parser.rb:152:in `yyparse'
|
968
|
-
parser.y:366:in `parse'
|
969
|
-
parser.y:344:in `parse'
|
970
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
971
|
-
./test/test_address.rb:90:in `validate_case__address'
|
972
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
973
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
974
|
-
|
975
|
-
76 tests, 1901 assertions, 0 failures, 1 errors
|
976
|
-
Loaded suite -e
|
977
|
-
Started
|
978
|
-
..F...............................................................................................................
|
979
|
-
Finished in 0.082695 seconds.
|
980
|
-
|
981
|
-
1) Failure:
|
982
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
983
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
984
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
985
|
-
<"attachment"> expected but was
|
986
|
-
<nil>.
|
987
|
-
|
988
|
-
114 tests, 527 assertions, 1 failures, 0 errors
|
989
|
-
Loaded suite -e
|
990
|
-
Started
|
991
|
-
...........................E.............
|
992
|
-
Finished in 0.160588 seconds.
|
993
|
-
|
994
|
-
1) Error:
|
995
|
-
test_parse__rawjp(TestAddress):
|
996
|
-
TMail::SyntaxError: parse error on token error
|
997
|
-
parser.y:379:in `on_error'
|
998
|
-
parser.y:379:in `_racc_yyparse_c'
|
999
|
-
parser.y:375:in `scan'
|
1000
|
-
parser.y:375:in `parse_in'
|
1001
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1002
|
-
racc/parser.rb:152:in `__send__'
|
1003
|
-
racc/parser.rb:152:in `yyparse'
|
1004
|
-
parser.y:366:in `parse'
|
1005
|
-
parser.y:344:in `parse'
|
1006
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1007
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1008
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
1009
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1010
|
-
|
1011
|
-
41 tests, 1749 assertions, 0 failures, 1 errors
|
1012
|
-
Loaded suite -e
|
1013
|
-
Started
|
1014
|
-
..F............................................................................
|
1015
|
-
Finished in 0.097336 seconds.
|
1016
|
-
|
1017
|
-
1) Failure:
|
1018
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1019
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1020
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1021
|
-
<"attachment"> expected but was
|
1022
|
-
<nil>.
|
1023
|
-
|
1024
|
-
79 tests, 375 assertions, 1 failures, 0 errors
|
1025
|
-
Loaded suite -e
|
1026
|
-
Started
|
1027
|
-
..............................................E.............
|
1028
|
-
Finished in 0.168924 seconds.
|
1029
|
-
|
1030
|
-
1) Error:
|
1031
|
-
test_parse__rawjp(TestAddress):
|
1032
|
-
TMail::SyntaxError: parse error on token error
|
1033
|
-
parser.y:379:in `on_error'
|
1034
|
-
parser.y:379:in `_racc_yyparse_c'
|
1035
|
-
parser.y:375:in `scan'
|
1036
|
-
parser.y:375:in `parse_in'
|
1037
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1038
|
-
racc/parser.rb:152:in `__send__'
|
1039
|
-
racc/parser.rb:152:in `yyparse'
|
1040
|
-
parser.y:366:in `parse'
|
1041
|
-
parser.y:344:in `parse'
|
1042
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1043
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1044
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
1045
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1046
|
-
|
1047
|
-
60 tests, 1804 assertions, 0 failures, 1 errors
|
1048
|
-
Loaded suite -e
|
1049
|
-
Started
|
1050
|
-
..F...............................................................................................
|
1051
|
-
Finished in 0.104936 seconds.
|
1052
|
-
|
1053
|
-
1) Failure:
|
1054
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1055
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1056
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1057
|
-
<"attachment"> expected but was
|
1058
|
-
<nil>.
|
1059
|
-
|
1060
|
-
98 tests, 430 assertions, 1 failures, 0 errors
|
1061
|
-
Loaded suite -e
|
1062
|
-
Started
|
1063
|
-
...............E........................
|
1064
|
-
Finished in 0.100879 seconds.
|
1065
|
-
|
1066
|
-
1) Error:
|
1067
|
-
test_parse__rawjp(TestAddress):
|
1068
|
-
TMail::SyntaxError: parse error on token error
|
1069
|
-
parser.y:379:in `on_error'
|
1070
|
-
parser.y:379:in `_racc_yyparse_c'
|
1071
|
-
parser.y:375:in `scan'
|
1072
|
-
parser.y:375:in `parse_in'
|
1073
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1074
|
-
racc/parser.rb:152:in `__send__'
|
1075
|
-
racc/parser.rb:152:in `yyparse'
|
1076
|
-
parser.y:366:in `parse'
|
1077
|
-
parser.y:344:in `parse'
|
1078
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1079
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1080
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
1081
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1082
|
-
|
1083
|
-
40 tests, 1697 assertions, 0 failures, 1 errors
|
1084
|
-
Loaded suite -e
|
1085
|
-
Started
|
1086
|
-
..F...........................................................................
|
1087
|
-
Finished in 0.047438 seconds.
|
1088
|
-
|
1089
|
-
1) Failure:
|
1090
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1091
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1092
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1093
|
-
<"attachment"> expected but was
|
1094
|
-
<nil>.
|
1095
|
-
|
1096
|
-
78 tests, 323 assertions, 1 failures, 0 errors
|
1097
|
-
Loaded suite -e
|
1098
|
-
Started
|
1099
|
-
..................E.............
|
1100
|
-
Finished in 0.100312 seconds.
|
1101
|
-
|
1102
|
-
1) Error:
|
1103
|
-
test_parse__rawjp(TestAddress):
|
1104
|
-
TMail::SyntaxError: parse error on token error
|
1105
|
-
parser.y:379:in `on_error'
|
1106
|
-
parser.y:379:in `_racc_yyparse_c'
|
1107
|
-
parser.y:375:in `scan'
|
1108
|
-
parser.y:375:in `parse_in'
|
1109
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1110
|
-
racc/parser.rb:152:in `__send__'
|
1111
|
-
racc/parser.rb:152:in `yyparse'
|
1112
|
-
parser.y:366:in `parse'
|
1113
|
-
parser.y:344:in `parse'
|
1114
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1115
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1116
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
1117
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1118
|
-
|
1119
|
-
32 tests, 1803 assertions, 0 failures, 1 errors
|
1120
|
-
Loaded suite -e
|
1121
|
-
Started
|
1122
|
-
..F...................................................................
|
1123
|
-
Finished in 0.047378 seconds.
|
1124
|
-
|
1125
|
-
1) Failure:
|
1126
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1127
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1128
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1129
|
-
<"attachment"> expected but was
|
1130
|
-
<nil>.
|
1131
|
-
|
1132
|
-
70 tests, 429 assertions, 1 failures, 0 errors
|
1133
|
-
Loaded suite -e
|
1134
|
-
Started
|
1135
|
-
...............E................
|
1136
|
-
Finished in 0.0925590000000001 seconds.
|
1137
|
-
|
1138
|
-
1) Error:
|
1139
|
-
test_parse__rawjp(TestAddress):
|
1140
|
-
TMail::SyntaxError: parse error on token error
|
1141
|
-
parser.y:379:in `on_error'
|
1142
|
-
parser.y:379:in `_racc_yyparse_c'
|
1143
|
-
parser.y:375:in `scan'
|
1144
|
-
parser.y:375:in `parse_in'
|
1145
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1146
|
-
racc/parser.rb:152:in `__send__'
|
1147
|
-
racc/parser.rb:152:in `yyparse'
|
1148
|
-
parser.y:366:in `parse'
|
1149
|
-
parser.y:344:in `parse'
|
1150
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1151
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1152
|
-
./test/test_address.rb:248:in `_test_parse__euc'
|
1153
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1154
|
-
|
1155
|
-
32 tests, 1689 assertions, 0 failures, 1 errors
|
1156
|
-
Loaded suite -e
|
1157
|
-
Started
|
1158
|
-
..F...................................................................
|
1159
|
-
Finished in 0.045748 seconds.
|
1160
|
-
|
1161
|
-
1) Failure:
|
1162
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1163
|
-
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1164
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1165
|
-
<"attachment"> expected but was
|
1166
|
-
<nil>.
|
1167
|
-
|
1168
|
-
70 tests, 315 assertions, 1 failures, 0 errors
|
1169
|
-
|
1170
|
-
|
1171
|
-
= Solo Test @ Fri Mar 14 23:01:10 +1100 2008
|
1172
|
-
|
1173
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1174
|
-
test/test_address.rb 29 1686 0 1 [FAIL]
|
1175
|
-
test/test_attachments.rb 3 4 0 0 [PASS]
|
1176
|
-
test/test_base64.rb 3 1430 0 0 [PASS]
|
1177
|
-
test/test_encode.rb 1 26 0 0 [PASS]
|
1178
|
-
test/test_header.rb 67 312 1 0 [FAIL]
|
1179
|
-
test/test_helper.rb 0 0 0 0 [PASS]
|
1180
|
-
test/test_mail.rb 47 215 0 0 [PASS]
|
1181
|
-
test/test_mbox.rb 12 63 0 0 [PASS]
|
1182
|
-
test/test_port.rb 31 118 0 0 [PASS]
|
1183
|
-
test/test_quote.rb 11 11 0 0 [PASS]
|
1184
|
-
test/test_scanner.rb 3 117 0 0 [PASS]
|
1185
|
-
test/test_utils.rb 3 3 0 0 [PASS]
|
1186
|
-
TOTAL 210 3985 1 1
|
1187
|
-
|
1188
|
-
-- Failures and Errors --
|
1189
|
-
|
1190
|
-
Loaded suite test/test_address
|
1191
|
-
Started
|
1192
|
-
...............E.............
|
1193
|
-
Finished in 0.090869 seconds.
|
1194
|
-
|
1195
|
-
1) Error:
|
1196
|
-
test_parse__rawjp(TestAddress):
|
1197
|
-
TMail::SyntaxError: parse error on token error
|
1198
|
-
parser.y:379:in `on_error'
|
1199
|
-
parser.y:379:in `_racc_yyparse_c'
|
1200
|
-
parser.y:375:in `scan'
|
1201
|
-
parser.y:375:in `parse_in'
|
1202
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1203
|
-
racc/parser.rb:152:in `__send__'
|
1204
|
-
racc/parser.rb:152:in `yyparse'
|
1205
|
-
parser.y:366:in `parse'
|
1206
|
-
parser.y:344:in `parse'
|
1207
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1208
|
-
test/test_address.rb:90:in `validate_case__address'
|
1209
|
-
test/test_address.rb:248:in `_test_parse__euc'
|
1210
|
-
test/test_address.rb:237:in `test_parse__rawjp'
|
1211
|
-
|
1212
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
1213
|
-
Loaded suite test/test_header
|
1214
|
-
Started
|
1215
|
-
..F................................................................
|
1216
|
-
Finished in 0.044878 seconds.
|
1217
|
-
|
1218
|
-
1) Failure:
|
1219
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1220
|
-
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1221
|
-
test/test_header.rb:756:in `test_ATTRS']:
|
1222
|
-
<"attachment"> expected but was
|
1223
|
-
<nil>.
|
1224
|
-
|
1225
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
1226
|
-
|
1227
|
-
|
1228
|
-
= Solo Test @ Sat Mar 15 01:21:40 +1100 2008
|
1229
|
-
|
1230
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1231
|
-
test/test_address.rb 29 1686 0 1 [FAIL]
|
1232
|
-
test/test_attachments.rb 3 4 0 0 [PASS]
|
1233
|
-
test/test_base64.rb 3 1430 0 0 [PASS]
|
1234
|
-
test/test_encode.rb 1 26 0 0 [PASS]
|
1235
|
-
test/test_header.rb 67 312 1 0 [FAIL]
|
1236
|
-
test/test_helper.rb 0 0 0 0 [PASS]
|
1237
|
-
test/test_mail.rb 47 215 0 0 [PASS]
|
1238
|
-
test/test_mbox.rb 12 63 0 0 [PASS]
|
1239
|
-
test/test_port.rb 31 118 0 0 [PASS]
|
1240
|
-
test/test_quote.rb 11 11 0 0 [PASS]
|
1241
|
-
test/test_scanner.rb 3 117 0 0 [PASS]
|
1242
|
-
test/test_utils.rb 3 3 0 0 [PASS]
|
1243
|
-
TOTAL 210 3985 1 1
|
1244
|
-
|
1245
|
-
-- Failures and Errors --
|
1246
|
-
|
1247
|
-
Loaded suite test/test_address
|
1248
|
-
Started
|
1249
|
-
...............E.............
|
1250
|
-
Finished in 0.092228 seconds.
|
1251
|
-
|
1252
|
-
1) Error:
|
1253
|
-
test_parse__rawjp(TestAddress):
|
1254
|
-
TMail::SyntaxError: parse error on token error
|
1255
|
-
parser.y:379:in `on_error'
|
1256
|
-
parser.y:379:in `_racc_yyparse_c'
|
1257
|
-
parser.y:375:in `scan'
|
1258
|
-
parser.y:375:in `parse_in'
|
1259
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1260
|
-
racc/parser.rb:152:in `__send__'
|
1261
|
-
racc/parser.rb:152:in `yyparse'
|
1262
|
-
parser.y:366:in `parse'
|
1263
|
-
parser.y:344:in `parse'
|
1264
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1265
|
-
test/test_address.rb:90:in `validate_case__address'
|
1266
|
-
test/test_address.rb:248:in `_test_parse__euc'
|
1267
|
-
test/test_address.rb:237:in `test_parse__rawjp'
|
1268
|
-
|
1269
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
1270
|
-
Loaded suite test/test_header
|
1271
|
-
Started
|
1272
|
-
..F................................................................
|
1273
|
-
Finished in 0.045673 seconds.
|
1274
|
-
|
1275
|
-
1) Failure:
|
1276
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1277
|
-
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1278
|
-
test/test_header.rb:756:in `test_ATTRS']:
|
1279
|
-
<"attachment"> expected but was
|
1280
|
-
<nil>.
|
1281
|
-
|
1282
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
1283
|
-
|
1284
|
-
|
1285
|
-
= Solo Test @ Mon Apr 07 09:47:05 +1000 2008
|
1286
|
-
|
1287
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1288
|
-
test/test_address.rb 29 1686 0 1 [FAIL]
|
1289
|
-
test/test_attachments.rb 3 4 0 0 [PASS]
|
1290
|
-
test/test_base64.rb 3 1430 0 0 [PASS]
|
1291
|
-
test/test_encode.rb 2 27 0 0 [PASS]
|
1292
|
-
test/test_header.rb 67 312 1 0 [FAIL]
|
1293
|
-
test/test_helper.rb 0 0 0 0 [PASS]
|
1294
|
-
test/test_mail.rb 47 215 0 0 [PASS]
|
1295
|
-
test/test_mbox.rb 12 63 0 0 [PASS]
|
1296
|
-
test/test_port.rb 31 118 0 0 [PASS]
|
1297
|
-
test/test_quote.rb 11 11 0 0 [PASS]
|
1298
|
-
test/test_scanner.rb 3 117 0 0 [PASS]
|
1299
|
-
test/test_utils.rb 3 3 0 0 [PASS]
|
1300
|
-
TOTAL 211 3986 1 1
|
1301
|
-
|
1302
|
-
-- Failures and Errors --
|
1303
|
-
|
1304
|
-
Loaded suite test/test_address
|
1305
|
-
Started
|
1306
|
-
...............E.............
|
1307
|
-
Finished in 0.0950920000000001 seconds.
|
1308
|
-
|
1309
|
-
1) Error:
|
1310
|
-
test_parse__rawjp(TestAddress):
|
1311
|
-
TMail::SyntaxError: parse error on token error
|
1312
|
-
parser.y:379:in `on_error'
|
1313
|
-
parser.y:379:in `_racc_yyparse_c'
|
1314
|
-
parser.y:375:in `scan'
|
1315
|
-
parser.y:375:in `parse_in'
|
1316
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1317
|
-
racc/parser.rb:152:in `__send__'
|
1318
|
-
racc/parser.rb:152:in `yyparse'
|
1319
|
-
parser.y:366:in `parse'
|
1320
|
-
parser.y:344:in `parse'
|
1321
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1322
|
-
test/test_address.rb:90:in `validate_case__address'
|
1323
|
-
test/test_address.rb:247:in `_test_parse__euc'
|
1324
|
-
test/test_address.rb:237:in `test_parse__rawjp'
|
1325
|
-
|
1326
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
1327
|
-
Loaded suite test/test_header
|
1328
|
-
Started
|
1329
|
-
..F................................................................
|
1330
|
-
Finished in 0.073639 seconds.
|
1331
|
-
|
1332
|
-
1) Failure:
|
1333
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1334
|
-
[test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1335
|
-
test/test_header.rb:756:in `test_ATTRS']:
|
1336
|
-
<"attachment"> expected but was
|
1337
|
-
<nil>.
|
1338
|
-
|
1339
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
1340
|
-
|
1341
|
-
|
1342
|
-
= Cross Test @ Mon Apr 07 09:47:45 +1000 2008
|
1343
|
-
|
1344
|
-
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1345
|
-
test/test_address.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
1346
|
-
test/test_address.rb test/test_attachments.rb 32 1690 0 1 [FAIL]
|
1347
|
-
test/test_address.rb test/test_base64.rb 32 3116 0 1 [FAIL]
|
1348
|
-
test/test_address.rb test/test_encode.rb 31 1713 0 1 [FAIL]
|
1349
|
-
test/test_address.rb test/test_header.rb 96 1998 1 1 [FAIL]
|
1350
|
-
test/test_address.rb test/test_helper.rb 29 1686 0 1 [FAIL]
|
1351
|
-
test/test_address.rb test/test_mail.rb 76 1901 0 1 [FAIL]
|
1352
|
-
test/test_address.rb test/test_mbox.rb 41 1749 0 1 [FAIL]
|
1353
|
-
test/test_address.rb test/test_port.rb 60 1804 0 1 [FAIL]
|
1354
|
-
test/test_address.rb test/test_quote.rb 40 1697 0 1 [FAIL]
|
1355
|
-
test/test_address.rb test/test_scanner.rb 32 1803 0 1 [FAIL]
|
1356
|
-
test/test_address.rb test/test_utils.rb 32 1689 0 1 [FAIL]
|
1357
|
-
test/test_attachments.rb test/test_address.rb 32 1690 0 1 [FAIL]
|
1358
|
-
test/test_attachments.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
1359
|
-
test/test_attachments.rb test/test_base64.rb 6 1434 0 0 [PASS]
|
1360
|
-
test/test_attachments.rb test/test_encode.rb 5 31 0 0 [PASS]
|
1361
|
-
test/test_attachments.rb test/test_header.rb 70 316 1 0 [FAIL]
|
1362
|
-
test/test_attachments.rb test/test_helper.rb 3 4 0 0 [PASS]
|
1363
|
-
test/test_attachments.rb test/test_mail.rb 50 219 0 0 [PASS]
|
1364
|
-
test/test_attachments.rb test/test_mbox.rb 15 67 0 0 [PASS]
|
1365
|
-
test/test_attachments.rb test/test_port.rb 34 122 0 0 [PASS]
|
1366
|
-
test/test_attachments.rb test/test_quote.rb 14 15 0 0 [PASS]
|
1367
|
-
test/test_attachments.rb test/test_scanner.rb 6 121 0 0 [PASS]
|
1368
|
-
test/test_attachments.rb test/test_utils.rb 6 7 0 0 [PASS]
|
1369
|
-
test/test_base64.rb test/test_address.rb 32 3116 0 1 [FAIL]
|
1370
|
-
test/test_base64.rb test/test_attachments.rb 6 1434 0 0 [PASS]
|
1371
|
-
test/test_base64.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
1372
|
-
test/test_base64.rb test/test_encode.rb 5 1457 0 0 [PASS]
|
1373
|
-
test/test_base64.rb test/test_header.rb 70 1742 1 0 [FAIL]
|
1374
|
-
test/test_base64.rb test/test_helper.rb 3 1430 0 0 [PASS]
|
1375
|
-
test/test_base64.rb test/test_mail.rb 50 1645 0 0 [PASS]
|
1376
|
-
test/test_base64.rb test/test_mbox.rb 15 1493 0 0 [PASS]
|
1377
|
-
test/test_base64.rb test/test_port.rb 34 1548 0 0 [PASS]
|
1378
|
-
test/test_base64.rb test/test_quote.rb 14 1441 0 0 [PASS]
|
1379
|
-
test/test_base64.rb test/test_scanner.rb 6 1547 0 0 [PASS]
|
1380
|
-
test/test_base64.rb test/test_utils.rb 6 1433 0 0 [PASS]
|
1381
|
-
test/test_encode.rb test/test_address.rb 31 1713 0 1 [FAIL]
|
1382
|
-
test/test_encode.rb test/test_attachments.rb 5 31 0 0 [PASS]
|
1383
|
-
test/test_encode.rb test/test_base64.rb 5 1457 0 0 [PASS]
|
1384
|
-
test/test_encode.rb test/test_encode.rb 2 27 0 0 [PASS]
|
1385
|
-
test/test_encode.rb test/test_header.rb 69 339 1 0 [FAIL]
|
1386
|
-
test/test_encode.rb test/test_helper.rb 2 27 0 0 [PASS]
|
1387
|
-
test/test_encode.rb test/test_mail.rb 49 242 0 0 [PASS]
|
1388
|
-
test/test_encode.rb test/test_mbox.rb 14 90 0 0 [PASS]
|
1389
|
-
test/test_encode.rb test/test_port.rb 33 145 0 0 [PASS]
|
1390
|
-
test/test_encode.rb test/test_quote.rb 13 38 0 0 [PASS]
|
1391
|
-
test/test_encode.rb test/test_scanner.rb 5 144 0 0 [PASS]
|
1392
|
-
test/test_encode.rb test/test_utils.rb 5 30 0 0 [PASS]
|
1393
|
-
test/test_header.rb test/test_address.rb 96 1998 1 1 [FAIL]
|
1394
|
-
test/test_header.rb test/test_attachments.rb 70 316 1 0 [FAIL]
|
1395
|
-
test/test_header.rb test/test_base64.rb 70 1742 1 0 [FAIL]
|
1396
|
-
test/test_header.rb test/test_encode.rb 69 339 1 0 [FAIL]
|
1397
|
-
test/test_header.rb test/test_header.rb 67 312 1 0 [FAIL]
|
1398
|
-
test/test_header.rb test/test_helper.rb 67 312 1 0 [FAIL]
|
1399
|
-
test/test_header.rb test/test_mail.rb 114 527 1 0 [FAIL]
|
1400
|
-
test/test_header.rb test/test_mbox.rb 79 375 1 0 [FAIL]
|
1401
|
-
test/test_header.rb test/test_port.rb 98 430 1 0 [FAIL]
|
1402
|
-
test/test_header.rb test/test_quote.rb 78 323 1 0 [FAIL]
|
1403
|
-
test/test_header.rb test/test_scanner.rb 70 429 1 0 [FAIL]
|
1404
|
-
test/test_header.rb test/test_utils.rb 70 315 1 0 [FAIL]
|
1405
|
-
test/test_helper.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
1406
|
-
test/test_helper.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
1407
|
-
test/test_helper.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
1408
|
-
test/test_helper.rb test/test_encode.rb 2 27 0 0 [PASS]
|
1409
|
-
test/test_helper.rb test/test_header.rb 67 312 1 0 [FAIL]
|
1410
|
-
test/test_helper.rb test/test_helper.rb 211 3986 1 1 [FAIL]
|
1411
|
-
test/test_helper.rb test/test_mail.rb 47 215 0 0 [PASS]
|
1412
|
-
test/test_helper.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
1413
|
-
test/test_helper.rb test/test_port.rb 31 118 0 0 [PASS]
|
1414
|
-
test/test_helper.rb test/test_quote.rb 11 11 0 0 [PASS]
|
1415
|
-
test/test_helper.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
1416
|
-
test/test_helper.rb test/test_utils.rb 3 3 0 0 [PASS]
|
1417
|
-
test/test_mail.rb test/test_address.rb 76 1901 0 1 [FAIL]
|
1418
|
-
test/test_mail.rb test/test_attachments.rb 50 219 0 0 [PASS]
|
1419
|
-
test/test_mail.rb test/test_base64.rb 50 1645 0 0 [PASS]
|
1420
|
-
test/test_mail.rb test/test_encode.rb 49 242 0 0 [PASS]
|
1421
|
-
test/test_mail.rb test/test_header.rb 114 527 1 0 [FAIL]
|
1422
|
-
test/test_mail.rb test/test_helper.rb 47 215 0 0 [PASS]
|
1423
|
-
test/test_mail.rb test/test_mail.rb 47 215 0 0 [PASS]
|
1424
|
-
test/test_mail.rb test/test_mbox.rb 59 278 0 0 [PASS]
|
1425
|
-
test/test_mail.rb test/test_port.rb 78 333 0 0 [PASS]
|
1426
|
-
test/test_mail.rb test/test_quote.rb 58 226 0 0 [PASS]
|
1427
|
-
test/test_mail.rb test/test_scanner.rb 50 332 0 0 [PASS]
|
1428
|
-
test/test_mail.rb test/test_utils.rb 50 218 0 0 [PASS]
|
1429
|
-
test/test_mbox.rb test/test_address.rb 41 1749 0 1 [FAIL]
|
1430
|
-
test/test_mbox.rb test/test_attachments.rb 15 67 0 0 [PASS]
|
1431
|
-
test/test_mbox.rb test/test_base64.rb 15 1493 0 0 [PASS]
|
1432
|
-
test/test_mbox.rb test/test_encode.rb 14 90 0 0 [PASS]
|
1433
|
-
test/test_mbox.rb test/test_header.rb 79 375 1 0 [FAIL]
|
1434
|
-
test/test_mbox.rb test/test_helper.rb 12 63 0 0 [PASS]
|
1435
|
-
test/test_mbox.rb test/test_mail.rb 59 278 0 0 [PASS]
|
1436
|
-
test/test_mbox.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
1437
|
-
test/test_mbox.rb test/test_port.rb 43 181 0 0 [PASS]
|
1438
|
-
test/test_mbox.rb test/test_quote.rb 23 74 0 0 [PASS]
|
1439
|
-
test/test_mbox.rb test/test_scanner.rb 15 180 0 0 [PASS]
|
1440
|
-
test/test_mbox.rb test/test_utils.rb 15 66 0 0 [PASS]
|
1441
|
-
test/test_port.rb test/test_address.rb 60 1804 0 1 [FAIL]
|
1442
|
-
test/test_port.rb test/test_attachments.rb 34 122 0 0 [PASS]
|
1443
|
-
test/test_port.rb test/test_base64.rb 34 1548 0 0 [PASS]
|
1444
|
-
test/test_port.rb test/test_encode.rb 33 145 0 0 [PASS]
|
1445
|
-
test/test_port.rb test/test_header.rb 98 430 1 0 [FAIL]
|
1446
|
-
test/test_port.rb test/test_helper.rb 31 118 0 0 [PASS]
|
1447
|
-
test/test_port.rb test/test_mail.rb 78 333 0 0 [PASS]
|
1448
|
-
test/test_port.rb test/test_mbox.rb 43 181 0 0 [PASS]
|
1449
|
-
test/test_port.rb test/test_port.rb 31 118 0 0 [PASS]
|
1450
|
-
test/test_port.rb test/test_quote.rb 42 129 0 0 [PASS]
|
1451
|
-
test/test_port.rb test/test_scanner.rb 34 235 0 0 [PASS]
|
1452
|
-
test/test_port.rb test/test_utils.rb 34 121 0 0 [PASS]
|
1453
|
-
test/test_quote.rb test/test_address.rb 40 1697 0 1 [FAIL]
|
1454
|
-
test/test_quote.rb test/test_attachments.rb 14 15 0 0 [PASS]
|
1455
|
-
test/test_quote.rb test/test_base64.rb 14 1441 0 0 [PASS]
|
1456
|
-
test/test_quote.rb test/test_encode.rb 13 38 0 0 [PASS]
|
1457
|
-
test/test_quote.rb test/test_header.rb 78 323 1 0 [FAIL]
|
1458
|
-
test/test_quote.rb test/test_helper.rb 11 11 0 0 [PASS]
|
1459
|
-
test/test_quote.rb test/test_mail.rb 58 226 0 0 [PASS]
|
1460
|
-
test/test_quote.rb test/test_mbox.rb 23 74 0 0 [PASS]
|
1461
|
-
test/test_quote.rb test/test_port.rb 42 129 0 0 [PASS]
|
1462
|
-
test/test_quote.rb test/test_quote.rb 11 11 0 0 [PASS]
|
1463
|
-
test/test_quote.rb test/test_scanner.rb 14 128 0 0 [PASS]
|
1464
|
-
test/test_quote.rb test/test_utils.rb 14 14 0 0 [PASS]
|
1465
|
-
test/test_scanner.rb test/test_address.rb 32 1803 0 1 [FAIL]
|
1466
|
-
test/test_scanner.rb test/test_attachments.rb 6 121 0 0 [PASS]
|
1467
|
-
test/test_scanner.rb test/test_base64.rb 6 1547 0 0 [PASS]
|
1468
|
-
test/test_scanner.rb test/test_encode.rb 5 144 0 0 [PASS]
|
1469
|
-
test/test_scanner.rb test/test_header.rb 70 429 1 0 [FAIL]
|
1470
|
-
test/test_scanner.rb test/test_helper.rb 3 117 0 0 [PASS]
|
1471
|
-
test/test_scanner.rb test/test_mail.rb 50 332 0 0 [PASS]
|
1472
|
-
test/test_scanner.rb test/test_mbox.rb 15 180 0 0 [PASS]
|
1473
|
-
test/test_scanner.rb test/test_port.rb 34 235 0 0 [PASS]
|
1474
|
-
test/test_scanner.rb test/test_quote.rb 14 128 0 0 [PASS]
|
1475
|
-
test/test_scanner.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
1476
|
-
test/test_scanner.rb test/test_utils.rb 6 120 0 0 [PASS]
|
1477
|
-
test/test_utils.rb test/test_address.rb 32 1689 0 1 [FAIL]
|
1478
|
-
test/test_utils.rb test/test_attachments.rb 6 7 0 0 [PASS]
|
1479
|
-
test/test_utils.rb test/test_base64.rb 6 1433 0 0 [PASS]
|
1480
|
-
test/test_utils.rb test/test_encode.rb 5 30 0 0 [PASS]
|
1481
|
-
test/test_utils.rb test/test_header.rb 70 315 1 0 [FAIL]
|
1482
|
-
test/test_utils.rb test/test_helper.rb 3 3 0 0 [PASS]
|
1483
|
-
test/test_utils.rb test/test_mail.rb 50 218 0 0 [PASS]
|
1484
|
-
test/test_utils.rb test/test_mbox.rb 15 66 0 0 [PASS]
|
1485
|
-
test/test_utils.rb test/test_port.rb 34 121 0 0 [PASS]
|
1486
|
-
test/test_utils.rb test/test_quote.rb 14 14 0 0 [PASS]
|
1487
|
-
test/test_utils.rb test/test_scanner.rb 6 120 0 0 [PASS]
|
1488
|
-
test/test_utils.rb test/test_utils.rb 3 3 0 0 [PASS]
|
1489
|
-
TOTAL 5064 95664 24 24
|
1490
|
-
|
1491
|
-
-- Failures and Errors --
|
1492
|
-
|
1493
|
-
Loaded suite -e
|
1494
|
-
Started
|
1495
|
-
...............E.............
|
1496
|
-
Finished in 0.095256 seconds.
|
1497
|
-
|
1498
|
-
1) Error:
|
1499
|
-
test_parse__rawjp(TestAddress):
|
1500
|
-
TMail::SyntaxError: parse error on token error
|
1501
|
-
parser.y:379:in `on_error'
|
1502
|
-
parser.y:379:in `_racc_yyparse_c'
|
1503
|
-
parser.y:375:in `scan'
|
1504
|
-
parser.y:375:in `parse_in'
|
1505
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1506
|
-
racc/parser.rb:152:in `__send__'
|
1507
|
-
racc/parser.rb:152:in `yyparse'
|
1508
|
-
parser.y:366:in `parse'
|
1509
|
-
parser.y:344:in `parse'
|
1510
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1511
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1512
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1513
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1514
|
-
|
1515
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
1516
|
-
Loaded suite -e
|
1517
|
-
Started
|
1518
|
-
...............E................
|
1519
|
-
Finished in 0.105752 seconds.
|
1520
|
-
|
1521
|
-
1) Error:
|
1522
|
-
test_parse__rawjp(TestAddress):
|
1523
|
-
TMail::SyntaxError: parse error on token error
|
1524
|
-
parser.y:379:in `on_error'
|
1525
|
-
parser.y:379:in `_racc_yyparse_c'
|
1526
|
-
parser.y:375:in `scan'
|
1527
|
-
parser.y:375:in `parse_in'
|
1528
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1529
|
-
racc/parser.rb:152:in `__send__'
|
1530
|
-
racc/parser.rb:152:in `yyparse'
|
1531
|
-
parser.y:366:in `parse'
|
1532
|
-
parser.y:344:in `parse'
|
1533
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1534
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1535
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1536
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1537
|
-
|
1538
|
-
32 tests, 1690 assertions, 0 failures, 1 errors
|
1539
|
-
Loaded suite -e
|
1540
|
-
Started
|
1541
|
-
...............E................
|
1542
|
-
Finished in 0.186971 seconds.
|
1543
|
-
|
1544
|
-
1) Error:
|
1545
|
-
test_parse__rawjp(TestAddress):
|
1546
|
-
TMail::SyntaxError: parse error on token error
|
1547
|
-
parser.y:379:in `on_error'
|
1548
|
-
parser.y:379:in `_racc_yyparse_c'
|
1549
|
-
parser.y:375:in `scan'
|
1550
|
-
parser.y:375:in `parse_in'
|
1551
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1552
|
-
racc/parser.rb:152:in `__send__'
|
1553
|
-
racc/parser.rb:152:in `yyparse'
|
1554
|
-
parser.y:366:in `parse'
|
1555
|
-
parser.y:344:in `parse'
|
1556
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1557
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1558
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1559
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1560
|
-
|
1561
|
-
32 tests, 3116 assertions, 0 failures, 1 errors
|
1562
|
-
Loaded suite -e
|
1563
|
-
Started
|
1564
|
-
...............E...............
|
1565
|
-
Finished in 0.107076 seconds.
|
1566
|
-
|
1567
|
-
1) Error:
|
1568
|
-
test_parse__rawjp(TestAddress):
|
1569
|
-
TMail::SyntaxError: parse error on token error
|
1570
|
-
parser.y:379:in `on_error'
|
1571
|
-
parser.y:379:in `_racc_yyparse_c'
|
1572
|
-
parser.y:375:in `scan'
|
1573
|
-
parser.y:375:in `parse_in'
|
1574
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1575
|
-
racc/parser.rb:152:in `__send__'
|
1576
|
-
racc/parser.rb:152:in `yyparse'
|
1577
|
-
parser.y:366:in `parse'
|
1578
|
-
parser.y:344:in `parse'
|
1579
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1580
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1581
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1582
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1583
|
-
|
1584
|
-
31 tests, 1713 assertions, 0 failures, 1 errors
|
1585
|
-
Loaded suite -e
|
1586
|
-
Started
|
1587
|
-
..F.............................................................................E...............
|
1588
|
-
Finished in 0.127074 seconds.
|
1589
|
-
|
1590
|
-
1) Failure:
|
1591
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1592
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1593
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1594
|
-
<"attachment"> expected but was
|
1595
|
-
<nil>.
|
1596
|
-
|
1597
|
-
2) Error:
|
1598
|
-
test_parse__rawjp(TestAddress):
|
1599
|
-
TMail::SyntaxError: parse error on token error
|
1600
|
-
parser.y:379:in `on_error'
|
1601
|
-
parser.y:379:in `_racc_yyparse_c'
|
1602
|
-
parser.y:375:in `scan'
|
1603
|
-
parser.y:375:in `parse_in'
|
1604
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1605
|
-
racc/parser.rb:152:in `__send__'
|
1606
|
-
racc/parser.rb:152:in `yyparse'
|
1607
|
-
parser.y:366:in `parse'
|
1608
|
-
parser.y:344:in `parse'
|
1609
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1610
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1611
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1612
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1613
|
-
|
1614
|
-
96 tests, 1998 assertions, 1 failures, 1 errors
|
1615
|
-
Loaded suite -e
|
1616
|
-
Started
|
1617
|
-
...............E.............
|
1618
|
-
Finished in 0.094599 seconds.
|
1619
|
-
|
1620
|
-
1) Error:
|
1621
|
-
test_parse__rawjp(TestAddress):
|
1622
|
-
TMail::SyntaxError: parse error on token error
|
1623
|
-
parser.y:379:in `on_error'
|
1624
|
-
parser.y:379:in `_racc_yyparse_c'
|
1625
|
-
parser.y:375:in `scan'
|
1626
|
-
parser.y:375:in `parse_in'
|
1627
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1628
|
-
racc/parser.rb:152:in `__send__'
|
1629
|
-
racc/parser.rb:152:in `yyparse'
|
1630
|
-
parser.y:366:in `parse'
|
1631
|
-
parser.y:344:in `parse'
|
1632
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1633
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1634
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1635
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1636
|
-
|
1637
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
1638
|
-
Loaded suite -e
|
1639
|
-
Started
|
1640
|
-
...............E............................................................
|
1641
|
-
Finished in 0.142425 seconds.
|
1642
|
-
|
1643
|
-
1) Error:
|
1644
|
-
test_parse__rawjp(TestAddress):
|
1645
|
-
TMail::SyntaxError: parse error on token error
|
1646
|
-
parser.y:379:in `on_error'
|
1647
|
-
parser.y:379:in `_racc_yyparse_c'
|
1648
|
-
parser.y:375:in `scan'
|
1649
|
-
parser.y:375:in `parse_in'
|
1650
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1651
|
-
racc/parser.rb:152:in `__send__'
|
1652
|
-
racc/parser.rb:152:in `yyparse'
|
1653
|
-
parser.y:366:in `parse'
|
1654
|
-
parser.y:344:in `parse'
|
1655
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1656
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1657
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1658
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1659
|
-
|
1660
|
-
76 tests, 1901 assertions, 0 failures, 1 errors
|
1661
|
-
Loaded suite -e
|
1662
|
-
Started
|
1663
|
-
...........................E.............
|
1664
|
-
Finished in 0.164831 seconds.
|
1665
|
-
|
1666
|
-
1) Error:
|
1667
|
-
test_parse__rawjp(TestAddress):
|
1668
|
-
TMail::SyntaxError: parse error on token error
|
1669
|
-
parser.y:379:in `on_error'
|
1670
|
-
parser.y:379:in `_racc_yyparse_c'
|
1671
|
-
parser.y:375:in `scan'
|
1672
|
-
parser.y:375:in `parse_in'
|
1673
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1674
|
-
racc/parser.rb:152:in `__send__'
|
1675
|
-
racc/parser.rb:152:in `yyparse'
|
1676
|
-
parser.y:366:in `parse'
|
1677
|
-
parser.y:344:in `parse'
|
1678
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1679
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1680
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1681
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1682
|
-
|
1683
|
-
41 tests, 1749 assertions, 0 failures, 1 errors
|
1684
|
-
Loaded suite -e
|
1685
|
-
Started
|
1686
|
-
..............................................E.............
|
1687
|
-
Finished in 0.167203 seconds.
|
1688
|
-
|
1689
|
-
1) Error:
|
1690
|
-
test_parse__rawjp(TestAddress):
|
1691
|
-
TMail::SyntaxError: parse error on token error
|
1692
|
-
parser.y:379:in `on_error'
|
1693
|
-
parser.y:379:in `_racc_yyparse_c'
|
1694
|
-
parser.y:375:in `scan'
|
1695
|
-
parser.y:375:in `parse_in'
|
1696
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1697
|
-
racc/parser.rb:152:in `__send__'
|
1698
|
-
racc/parser.rb:152:in `yyparse'
|
1699
|
-
parser.y:366:in `parse'
|
1700
|
-
parser.y:344:in `parse'
|
1701
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1702
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1703
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1704
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1705
|
-
|
1706
|
-
60 tests, 1804 assertions, 0 failures, 1 errors
|
1707
|
-
Loaded suite -e
|
1708
|
-
Started
|
1709
|
-
...............E........................
|
1710
|
-
Finished in 0.102978 seconds.
|
1711
|
-
|
1712
|
-
1) Error:
|
1713
|
-
test_parse__rawjp(TestAddress):
|
1714
|
-
TMail::SyntaxError: parse error on token error
|
1715
|
-
parser.y:379:in `on_error'
|
1716
|
-
parser.y:379:in `_racc_yyparse_c'
|
1717
|
-
parser.y:375:in `scan'
|
1718
|
-
parser.y:375:in `parse_in'
|
1719
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1720
|
-
racc/parser.rb:152:in `__send__'
|
1721
|
-
racc/parser.rb:152:in `yyparse'
|
1722
|
-
parser.y:366:in `parse'
|
1723
|
-
parser.y:344:in `parse'
|
1724
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1725
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1726
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1727
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1728
|
-
|
1729
|
-
40 tests, 1697 assertions, 0 failures, 1 errors
|
1730
|
-
Loaded suite -e
|
1731
|
-
Started
|
1732
|
-
..................E.............
|
1733
|
-
Finished in 0.103419 seconds.
|
1734
|
-
|
1735
|
-
1) Error:
|
1736
|
-
test_parse__rawjp(TestAddress):
|
1737
|
-
TMail::SyntaxError: parse error on token error
|
1738
|
-
parser.y:379:in `on_error'
|
1739
|
-
parser.y:379:in `_racc_yyparse_c'
|
1740
|
-
parser.y:375:in `scan'
|
1741
|
-
parser.y:375:in `parse_in'
|
1742
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1743
|
-
racc/parser.rb:152:in `__send__'
|
1744
|
-
racc/parser.rb:152:in `yyparse'
|
1745
|
-
parser.y:366:in `parse'
|
1746
|
-
parser.y:344:in `parse'
|
1747
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1748
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1749
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1750
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1751
|
-
|
1752
|
-
32 tests, 1803 assertions, 0 failures, 1 errors
|
1753
|
-
Loaded suite -e
|
1754
|
-
Started
|
1755
|
-
...............E................
|
1756
|
-
Finished in 0.094892 seconds.
|
1757
|
-
|
1758
|
-
1) Error:
|
1759
|
-
test_parse__rawjp(TestAddress):
|
1760
|
-
TMail::SyntaxError: parse error on token error
|
1761
|
-
parser.y:379:in `on_error'
|
1762
|
-
parser.y:379:in `_racc_yyparse_c'
|
1763
|
-
parser.y:375:in `scan'
|
1764
|
-
parser.y:375:in `parse_in'
|
1765
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1766
|
-
racc/parser.rb:152:in `__send__'
|
1767
|
-
racc/parser.rb:152:in `yyparse'
|
1768
|
-
parser.y:366:in `parse'
|
1769
|
-
parser.y:344:in `parse'
|
1770
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1771
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1772
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1773
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1774
|
-
|
1775
|
-
32 tests, 1689 assertions, 0 failures, 1 errors
|
1776
|
-
Loaded suite -e
|
1777
|
-
Started
|
1778
|
-
...............E................
|
1779
|
-
Finished in 0.107364 seconds.
|
1780
|
-
|
1781
|
-
1) Error:
|
1782
|
-
test_parse__rawjp(TestAddress):
|
1783
|
-
TMail::SyntaxError: parse error on token error
|
1784
|
-
parser.y:379:in `on_error'
|
1785
|
-
parser.y:379:in `_racc_yyparse_c'
|
1786
|
-
parser.y:375:in `scan'
|
1787
|
-
parser.y:375:in `parse_in'
|
1788
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1789
|
-
racc/parser.rb:152:in `__send__'
|
1790
|
-
racc/parser.rb:152:in `yyparse'
|
1791
|
-
parser.y:366:in `parse'
|
1792
|
-
parser.y:344:in `parse'
|
1793
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1794
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1795
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1796
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1797
|
-
|
1798
|
-
32 tests, 1690 assertions, 0 failures, 1 errors
|
1799
|
-
Loaded suite -e
|
1800
|
-
Started
|
1801
|
-
..F...................................................................
|
1802
|
-
Finished in 0.050516 seconds.
|
1803
|
-
|
1804
|
-
1) Failure:
|
1805
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1806
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1807
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1808
|
-
<"attachment"> expected but was
|
1809
|
-
<nil>.
|
1810
|
-
|
1811
|
-
70 tests, 316 assertions, 1 failures, 0 errors
|
1812
|
-
Loaded suite -e
|
1813
|
-
Started
|
1814
|
-
...............E................
|
1815
|
-
Finished in 0.181623 seconds.
|
1816
|
-
|
1817
|
-
1) Error:
|
1818
|
-
test_parse__rawjp(TestAddress):
|
1819
|
-
TMail::SyntaxError: parse error on token error
|
1820
|
-
parser.y:379:in `on_error'
|
1821
|
-
parser.y:379:in `_racc_yyparse_c'
|
1822
|
-
parser.y:375:in `scan'
|
1823
|
-
parser.y:375:in `parse_in'
|
1824
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1825
|
-
racc/parser.rb:152:in `__send__'
|
1826
|
-
racc/parser.rb:152:in `yyparse'
|
1827
|
-
parser.y:366:in `parse'
|
1828
|
-
parser.y:344:in `parse'
|
1829
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1830
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1831
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1832
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1833
|
-
|
1834
|
-
32 tests, 3116 assertions, 0 failures, 1 errors
|
1835
|
-
Loaded suite -e
|
1836
|
-
Started
|
1837
|
-
..F...................................................................
|
1838
|
-
Finished in 0.123416 seconds.
|
1839
|
-
|
1840
|
-
1) Failure:
|
1841
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1842
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1843
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1844
|
-
<"attachment"> expected but was
|
1845
|
-
<nil>.
|
1846
|
-
|
1847
|
-
70 tests, 1742 assertions, 1 failures, 0 errors
|
1848
|
-
Loaded suite -e
|
1849
|
-
Started
|
1850
|
-
...............E...............
|
1851
|
-
Finished in 0.108171 seconds.
|
1852
|
-
|
1853
|
-
1) Error:
|
1854
|
-
test_parse__rawjp(TestAddress):
|
1855
|
-
TMail::SyntaxError: parse error on token error
|
1856
|
-
parser.y:379:in `on_error'
|
1857
|
-
parser.y:379:in `_racc_yyparse_c'
|
1858
|
-
parser.y:375:in `scan'
|
1859
|
-
parser.y:375:in `parse_in'
|
1860
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1861
|
-
racc/parser.rb:152:in `__send__'
|
1862
|
-
racc/parser.rb:152:in `yyparse'
|
1863
|
-
parser.y:366:in `parse'
|
1864
|
-
parser.y:344:in `parse'
|
1865
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1866
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1867
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1868
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1869
|
-
|
1870
|
-
31 tests, 1713 assertions, 0 failures, 1 errors
|
1871
|
-
Loaded suite -e
|
1872
|
-
Started
|
1873
|
-
..F..................................................................
|
1874
|
-
Finished in 0.051321 seconds.
|
1875
|
-
|
1876
|
-
1) Failure:
|
1877
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1878
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1879
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1880
|
-
<"attachment"> expected but was
|
1881
|
-
<nil>.
|
1882
|
-
|
1883
|
-
69 tests, 339 assertions, 1 failures, 0 errors
|
1884
|
-
Loaded suite -e
|
1885
|
-
Started
|
1886
|
-
..F.............................................................................E...............
|
1887
|
-
Finished in 0.127828 seconds.
|
1888
|
-
|
1889
|
-
1) Failure:
|
1890
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1891
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1892
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1893
|
-
<"attachment"> expected but was
|
1894
|
-
<nil>.
|
1895
|
-
|
1896
|
-
2) Error:
|
1897
|
-
test_parse__rawjp(TestAddress):
|
1898
|
-
TMail::SyntaxError: parse error on token error
|
1899
|
-
parser.y:379:in `on_error'
|
1900
|
-
parser.y:379:in `_racc_yyparse_c'
|
1901
|
-
parser.y:375:in `scan'
|
1902
|
-
parser.y:375:in `parse_in'
|
1903
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
1904
|
-
racc/parser.rb:152:in `__send__'
|
1905
|
-
racc/parser.rb:152:in `yyparse'
|
1906
|
-
parser.y:366:in `parse'
|
1907
|
-
parser.y:344:in `parse'
|
1908
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
1909
|
-
./test/test_address.rb:90:in `validate_case__address'
|
1910
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
1911
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
1912
|
-
|
1913
|
-
96 tests, 1998 assertions, 1 failures, 1 errors
|
1914
|
-
Loaded suite -e
|
1915
|
-
Started
|
1916
|
-
..F...................................................................
|
1917
|
-
Finished in 0.050633 seconds.
|
1918
|
-
|
1919
|
-
1) Failure:
|
1920
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1921
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1922
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1923
|
-
<"attachment"> expected but was
|
1924
|
-
<nil>.
|
1925
|
-
|
1926
|
-
70 tests, 316 assertions, 1 failures, 0 errors
|
1927
|
-
Loaded suite -e
|
1928
|
-
Started
|
1929
|
-
..F...................................................................
|
1930
|
-
Finished in 0.123302 seconds.
|
1931
|
-
|
1932
|
-
1) Failure:
|
1933
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1934
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1935
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1936
|
-
<"attachment"> expected but was
|
1937
|
-
<nil>.
|
1938
|
-
|
1939
|
-
70 tests, 1742 assertions, 1 failures, 0 errors
|
1940
|
-
Loaded suite -e
|
1941
|
-
Started
|
1942
|
-
..F..................................................................
|
1943
|
-
Finished in 0.051097 seconds.
|
1944
|
-
|
1945
|
-
1) Failure:
|
1946
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1947
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1948
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1949
|
-
<"attachment"> expected but was
|
1950
|
-
<nil>.
|
1951
|
-
|
1952
|
-
69 tests, 339 assertions, 1 failures, 0 errors
|
1953
|
-
Loaded suite -e
|
1954
|
-
Started
|
1955
|
-
..F................................................................
|
1956
|
-
Finished in 0.042483 seconds.
|
1957
|
-
|
1958
|
-
1) Failure:
|
1959
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1960
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1961
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1962
|
-
<"attachment"> expected but was
|
1963
|
-
<nil>.
|
1964
|
-
|
1965
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
1966
|
-
Loaded suite -e
|
1967
|
-
Started
|
1968
|
-
..F................................................................
|
1969
|
-
Finished in 0.045175 seconds.
|
1970
|
-
|
1971
|
-
1) Failure:
|
1972
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1973
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1974
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1975
|
-
<"attachment"> expected but was
|
1976
|
-
<nil>.
|
1977
|
-
|
1978
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
1979
|
-
Loaded suite -e
|
1980
|
-
Started
|
1981
|
-
..F...............................................................................................................
|
1982
|
-
Finished in 0.082539 seconds.
|
1983
|
-
|
1984
|
-
1) Failure:
|
1985
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1986
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1987
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
1988
|
-
<"attachment"> expected but was
|
1989
|
-
<nil>.
|
1990
|
-
|
1991
|
-
114 tests, 527 assertions, 1 failures, 0 errors
|
1992
|
-
Loaded suite -e
|
1993
|
-
Started
|
1994
|
-
..F............................................................................
|
1995
|
-
Finished in 0.08958 seconds.
|
1996
|
-
|
1997
|
-
1) Failure:
|
1998
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
1999
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2000
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2001
|
-
<"attachment"> expected but was
|
2002
|
-
<nil>.
|
2003
|
-
|
2004
|
-
79 tests, 375 assertions, 1 failures, 0 errors
|
2005
|
-
Loaded suite -e
|
2006
|
-
Started
|
2007
|
-
..F...............................................................................................
|
2008
|
-
Finished in 0.08739 seconds.
|
2009
|
-
|
2010
|
-
1) Failure:
|
2011
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2012
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2013
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2014
|
-
<"attachment"> expected but was
|
2015
|
-
<nil>.
|
2016
|
-
|
2017
|
-
98 tests, 430 assertions, 1 failures, 0 errors
|
2018
|
-
Loaded suite -e
|
2019
|
-
Started
|
2020
|
-
..F...........................................................................
|
2021
|
-
Finished in 0.047858 seconds.
|
2022
|
-
|
2023
|
-
1) Failure:
|
2024
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2025
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2026
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2027
|
-
<"attachment"> expected but was
|
2028
|
-
<nil>.
|
2029
|
-
|
2030
|
-
78 tests, 323 assertions, 1 failures, 0 errors
|
2031
|
-
Loaded suite -e
|
2032
|
-
Started
|
2033
|
-
..F...................................................................
|
2034
|
-
Finished in 0.047838 seconds.
|
2035
|
-
|
2036
|
-
1) Failure:
|
2037
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2038
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2039
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2040
|
-
<"attachment"> expected but was
|
2041
|
-
<nil>.
|
2042
|
-
|
2043
|
-
70 tests, 429 assertions, 1 failures, 0 errors
|
2044
|
-
Loaded suite -e
|
2045
|
-
Started
|
2046
|
-
..F...................................................................
|
2047
|
-
Finished in 0.045607 seconds.
|
2048
|
-
|
2049
|
-
1) Failure:
|
2050
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2051
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2052
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2053
|
-
<"attachment"> expected but was
|
2054
|
-
<nil>.
|
2055
|
-
|
2056
|
-
70 tests, 315 assertions, 1 failures, 0 errors
|
2057
|
-
Loaded suite -e
|
2058
|
-
Started
|
2059
|
-
...............E.............
|
2060
|
-
Finished in 0.094401 seconds.
|
2061
|
-
|
2062
|
-
1) Error:
|
2063
|
-
test_parse__rawjp(TestAddress):
|
2064
|
-
TMail::SyntaxError: parse error on token error
|
2065
|
-
parser.y:379:in `on_error'
|
2066
|
-
parser.y:379:in `_racc_yyparse_c'
|
2067
|
-
parser.y:375:in `scan'
|
2068
|
-
parser.y:375:in `parse_in'
|
2069
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2070
|
-
racc/parser.rb:152:in `__send__'
|
2071
|
-
racc/parser.rb:152:in `yyparse'
|
2072
|
-
parser.y:366:in `parse'
|
2073
|
-
parser.y:344:in `parse'
|
2074
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2075
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2076
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2077
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2078
|
-
|
2079
|
-
29 tests, 1686 assertions, 0 failures, 1 errors
|
2080
|
-
Loaded suite -e
|
2081
|
-
Started
|
2082
|
-
..F................................................................
|
2083
|
-
Finished in 0.04508 seconds.
|
2084
|
-
|
2085
|
-
1) Failure:
|
2086
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2087
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2088
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2089
|
-
<"attachment"> expected but was
|
2090
|
-
<nil>.
|
2091
|
-
|
2092
|
-
67 tests, 312 assertions, 1 failures, 0 errors
|
2093
|
-
Loaded suite .
|
2094
|
-
Started
|
2095
|
-
..F...........................................................................................................................E....................................................................................
|
2096
|
-
Finished in 0.425147 seconds.
|
2097
|
-
|
2098
|
-
1) Failure:
|
2099
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2100
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2101
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2102
|
-
<"attachment"> expected but was
|
2103
|
-
<nil>.
|
2104
|
-
|
2105
|
-
2) Error:
|
2106
|
-
test_parse__rawjp(TestAddress):
|
2107
|
-
TMail::SyntaxError: parse error on token error
|
2108
|
-
parser.y:379:in `on_error'
|
2109
|
-
parser.y:379:in `_racc_yyparse_c'
|
2110
|
-
parser.y:375:in `scan'
|
2111
|
-
parser.y:375:in `parse_in'
|
2112
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2113
|
-
racc/parser.rb:152:in `__send__'
|
2114
|
-
racc/parser.rb:152:in `yyparse'
|
2115
|
-
parser.y:366:in `parse'
|
2116
|
-
parser.y:344:in `parse'
|
2117
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2118
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2119
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2120
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2121
|
-
|
2122
|
-
211 tests, 3986 assertions, 1 failures, 1 errors
|
2123
|
-
Loaded suite -e
|
2124
|
-
Started
|
2125
|
-
...............E............................................................
|
2126
|
-
Finished in 0.142091 seconds.
|
2127
|
-
|
2128
|
-
1) Error:
|
2129
|
-
test_parse__rawjp(TestAddress):
|
2130
|
-
TMail::SyntaxError: parse error on token error
|
2131
|
-
parser.y:379:in `on_error'
|
2132
|
-
parser.y:379:in `_racc_yyparse_c'
|
2133
|
-
parser.y:375:in `scan'
|
2134
|
-
parser.y:375:in `parse_in'
|
2135
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2136
|
-
racc/parser.rb:152:in `__send__'
|
2137
|
-
racc/parser.rb:152:in `yyparse'
|
2138
|
-
parser.y:366:in `parse'
|
2139
|
-
parser.y:344:in `parse'
|
2140
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2141
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2142
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2143
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2144
|
-
|
2145
|
-
76 tests, 1901 assertions, 0 failures, 1 errors
|
2146
|
-
Loaded suite -e
|
2147
|
-
Started
|
2148
|
-
..F...............................................................................................................
|
2149
|
-
Finished in 0.083532 seconds.
|
2150
|
-
|
2151
|
-
1) Failure:
|
2152
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2153
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2154
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2155
|
-
<"attachment"> expected but was
|
2156
|
-
<nil>.
|
2157
|
-
|
2158
|
-
114 tests, 527 assertions, 1 failures, 0 errors
|
2159
|
-
Loaded suite -e
|
2160
|
-
Started
|
2161
|
-
...........................E.............
|
2162
|
-
Finished in 0.154959 seconds.
|
2163
|
-
|
2164
|
-
1) Error:
|
2165
|
-
test_parse__rawjp(TestAddress):
|
2166
|
-
TMail::SyntaxError: parse error on token error
|
2167
|
-
parser.y:379:in `on_error'
|
2168
|
-
parser.y:379:in `_racc_yyparse_c'
|
2169
|
-
parser.y:375:in `scan'
|
2170
|
-
parser.y:375:in `parse_in'
|
2171
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2172
|
-
racc/parser.rb:152:in `__send__'
|
2173
|
-
racc/parser.rb:152:in `yyparse'
|
2174
|
-
parser.y:366:in `parse'
|
2175
|
-
parser.y:344:in `parse'
|
2176
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2177
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2178
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2179
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2180
|
-
|
2181
|
-
41 tests, 1749 assertions, 0 failures, 1 errors
|
2182
|
-
Loaded suite -e
|
2183
|
-
Started
|
2184
|
-
..F............................................................................
|
2185
|
-
Finished in 0.086501 seconds.
|
2186
|
-
|
2187
|
-
1) Failure:
|
2188
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2189
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2190
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2191
|
-
<"attachment"> expected but was
|
2192
|
-
<nil>.
|
2193
|
-
|
2194
|
-
79 tests, 375 assertions, 1 failures, 0 errors
|
2195
|
-
Loaded suite -e
|
2196
|
-
Started
|
2197
|
-
..............................................E.............
|
2198
|
-
Finished in 0.172243 seconds.
|
2199
|
-
|
2200
|
-
1) Error:
|
2201
|
-
test_parse__rawjp(TestAddress):
|
2202
|
-
TMail::SyntaxError: parse error on token error
|
2203
|
-
parser.y:379:in `on_error'
|
2204
|
-
parser.y:379:in `_racc_yyparse_c'
|
2205
|
-
parser.y:375:in `scan'
|
2206
|
-
parser.y:375:in `parse_in'
|
2207
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2208
|
-
racc/parser.rb:152:in `__send__'
|
2209
|
-
racc/parser.rb:152:in `yyparse'
|
2210
|
-
parser.y:366:in `parse'
|
2211
|
-
parser.y:344:in `parse'
|
2212
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2213
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2214
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2215
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2216
|
-
|
2217
|
-
60 tests, 1804 assertions, 0 failures, 1 errors
|
2218
|
-
Loaded suite -e
|
2219
|
-
Started
|
2220
|
-
..F...............................................................................................
|
2221
|
-
Finished in 0.105874 seconds.
|
2222
|
-
|
2223
|
-
1) Failure:
|
2224
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2225
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2226
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2227
|
-
<"attachment"> expected but was
|
2228
|
-
<nil>.
|
2229
|
-
|
2230
|
-
98 tests, 430 assertions, 1 failures, 0 errors
|
2231
|
-
Loaded suite -e
|
2232
|
-
Started
|
2233
|
-
...............E........................
|
2234
|
-
Finished in 0.103469 seconds.
|
2235
|
-
|
2236
|
-
1) Error:
|
2237
|
-
test_parse__rawjp(TestAddress):
|
2238
|
-
TMail::SyntaxError: parse error on token error
|
2239
|
-
parser.y:379:in `on_error'
|
2240
|
-
parser.y:379:in `_racc_yyparse_c'
|
2241
|
-
parser.y:375:in `scan'
|
2242
|
-
parser.y:375:in `parse_in'
|
2243
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2244
|
-
racc/parser.rb:152:in `__send__'
|
2245
|
-
racc/parser.rb:152:in `yyparse'
|
2246
|
-
parser.y:366:in `parse'
|
2247
|
-
parser.y:344:in `parse'
|
2248
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2249
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2250
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2251
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2252
|
-
|
2253
|
-
40 tests, 1697 assertions, 0 failures, 1 errors
|
2254
|
-
Loaded suite -e
|
2255
|
-
Started
|
2256
|
-
..F...........................................................................
|
2257
|
-
Finished in 0.047818 seconds.
|
2258
|
-
|
2259
|
-
1) Failure:
|
2260
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2261
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2262
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2263
|
-
<"attachment"> expected but was
|
2264
|
-
<nil>.
|
2265
|
-
|
2266
|
-
78 tests, 323 assertions, 1 failures, 0 errors
|
2267
|
-
Loaded suite -e
|
2268
|
-
Started
|
2269
|
-
..................E.............
|
2270
|
-
Finished in 0.103414 seconds.
|
2271
|
-
|
2272
|
-
1) Error:
|
2273
|
-
test_parse__rawjp(TestAddress):
|
2274
|
-
TMail::SyntaxError: parse error on token error
|
2275
|
-
parser.y:379:in `on_error'
|
2276
|
-
parser.y:379:in `_racc_yyparse_c'
|
2277
|
-
parser.y:375:in `scan'
|
2278
|
-
parser.y:375:in `parse_in'
|
2279
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2280
|
-
racc/parser.rb:152:in `__send__'
|
2281
|
-
racc/parser.rb:152:in `yyparse'
|
2282
|
-
parser.y:366:in `parse'
|
2283
|
-
parser.y:344:in `parse'
|
2284
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2285
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2286
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2287
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2288
|
-
|
2289
|
-
32 tests, 1803 assertions, 0 failures, 1 errors
|
2290
|
-
Loaded suite -e
|
2291
|
-
Started
|
2292
|
-
..F...................................................................
|
2293
|
-
Finished in 0.04758 seconds.
|
2294
|
-
|
2295
|
-
1) Failure:
|
2296
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2297
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2298
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2299
|
-
<"attachment"> expected but was
|
2300
|
-
<nil>.
|
2301
|
-
|
2302
|
-
70 tests, 429 assertions, 1 failures, 0 errors
|
2303
|
-
Loaded suite -e
|
2304
|
-
Started
|
2305
|
-
...............E................
|
2306
|
-
Finished in 0.104814 seconds.
|
2307
|
-
|
2308
|
-
1) Error:
|
2309
|
-
test_parse__rawjp(TestAddress):
|
2310
|
-
TMail::SyntaxError: parse error on token error
|
2311
|
-
parser.y:379:in `on_error'
|
2312
|
-
parser.y:379:in `_racc_yyparse_c'
|
2313
|
-
parser.y:375:in `scan'
|
2314
|
-
parser.y:375:in `parse_in'
|
2315
|
-
racc/parser.rb:152:in `_racc_yyparse_c'
|
2316
|
-
racc/parser.rb:152:in `__send__'
|
2317
|
-
racc/parser.rb:152:in `yyparse'
|
2318
|
-
parser.y:366:in `parse'
|
2319
|
-
parser.y:344:in `parse'
|
2320
|
-
./test/../lib/tmail/address.rb:84:in `parse'
|
2321
|
-
./test/test_address.rb:90:in `validate_case__address'
|
2322
|
-
./test/test_address.rb:247:in `_test_parse__euc'
|
2323
|
-
./test/test_address.rb:237:in `test_parse__rawjp'
|
2324
|
-
|
2325
|
-
32 tests, 1689 assertions, 0 failures, 1 errors
|
2326
|
-
Loaded suite -e
|
2327
|
-
Started
|
2328
|
-
..F...................................................................
|
2329
|
-
Finished in 0.045485 seconds.
|
2330
|
-
|
2331
|
-
1) Failure:
|
2332
|
-
test_ATTRS(ContentDispositionHeaderTester)
|
2333
|
-
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2334
|
-
./test/test_header.rb:756:in `test_ATTRS']:
|
2335
|
-
<"attachment"> expected but was
|
2336
|
-
<nil>.
|
2337
|
-
|
2338
|
-
70 tests, 315 assertions, 1 failures, 0 errors
|
2339
|
-
|
2340
|
-
|