summaryrefslogtreecommitdiffstats
path: root/tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
diff options
context:
space:
mode:
authorPeter Hartmann <peter.hartmann@nokia.com>2010-04-28 12:29:55 (GMT)
committerPeter Hartmann <peter.hartmann@nokia.com>2010-04-28 12:30:58 (GMT)
commit39ee4f868bb0415875413c224f44fd9d7c2a4496 (patch)
tree3c9fcdc26dd14608bf31d5c06cefd244ccde341a /tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
parent483fdd017d9998c6d7f4a035ca615e15fbc97e6a (diff)
downloadQt-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/tst_qnetworkcookiejar.cpp')
-rw-r--r--tests/auto/qnetworkcookiejar/tst_qnetworkcookiejar.cpp3
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;
}