aboutsummaryrefslogtreecommitdiffstats
path: root/test/net
diff options
context:
space:
mode:
Diffstat (limited to 'test/net')
-rw-r--r--test/net/imap/test_imap_response_parser.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/net/imap/test_imap_response_parser.rb b/test/net/imap/test_imap_response_parser.rb
index 3ebb248b4e..b8c6db86cd 100644
--- a/test/net/imap/test_imap_response_parser.rb
+++ b/test/net/imap/test_imap_response_parser.rb
@@ -304,4 +304,11 @@ EOF
assert_equal("INBOX", response.data.mailbox)
assert_equal(1234, response.data.attr["UIDVALIDITY"])
end
+
+ # [Bug #10119]
+ def test_msg_att_modseq_data
+ parser = Net::IMAP::ResponseParser.new
+ response = parser.parse("* 1 FETCH (FLAGS (\Seen) MODSEQ (12345) UID 5)\r\n")
+ assert_equal(12345, response.data.attr["MODSEQ"])
+ end
end