diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2010-04-28 12:29:55 (GMT) |
---|---|---|
committer | Peter Hartmann <peter.hartmann@nokia.com> | 2010-04-28 12:30:58 (GMT) |
commit | 39ee4f868bb0415875413c224f44fd9d7c2a4496 (patch) | |
tree | 3c9fcdc26dd14608bf31d5c06cefd244ccde341a /tests/auto/qnetworkcookiejar | |
parent | 483fdd017d9998c6d7f4a035ca615e15fbc97e6a (diff) | |
download | Qt-39ee4f868bb0415875413c224f44fd9d7c2a4496.zip Qt-39ee4f868bb0415875413c224f44fd9d7c2a4496.tar.gz Qt-39ee4f868bb0415875413c224f44fd9d7c2a4496.tar.bz2 |
add some QNetworkCookieJar tests
... regarding the previous merge request.
Diffstat (limited to 'tests/auto/qnetworkcookiejar')
-rw-r--r-- | tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp b/tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp index ab057dc..01b9c0c 100644 --- a/tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp +++ b/tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp @@ -315,6 +315,9 @@ void tst_QNetworkCookieJar::cookiesForUrl_data() allCookies += secureCookie; QTest::newRow("no-match-secure-1") << allCookies << "http://nokia.com/web" << result; QTest::newRow("no-match-secure-2") << allCookies << "http://qt.nokia.com/web" << result; + result += secureCookie; + QTest::newRow("match-secure-1") << allCookies << "https://nokia.com/web" << result; + QTest::newRow("match-secure-2") << allCookies << "https://qt.nokia.com/web" << result; } |