summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2016-01-31 16:17:55 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2016-01-31 16:17:55 -0500
commitc4a47c0563a6cc503cf99569982b560fb8f00b85 (patch)
treec116a1e668946f379b3978ca0451de2b2ad9c6c5 /tests
parent99ce1df7df14ee5de7f636ac24734c364ecf0021 (diff)
downloadpycurl-c4a47c0563a6cc503cf99569982b560fb8f00b85.tar.gz
Add CURLOPT_SASL_IR
Diffstat (limited to 'tests')
-rw-r--r--tests/option_constants_test.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/option_constants_test.py b/tests/option_constants_test.py
index f55b9c4..cc0e8d8 100644
--- a/tests/option_constants_test.py
+++ b/tests/option_constants_test.py
@@ -438,3 +438,7 @@ class OptionConstantsSettingTest(unittest.TestCase):
@util.min_libcurl(7, 34, 0)
def test_login_options(self):
self.curl.setopt(self.curl.LOGIN_OPTIONS, 'AUTH=NTLM')
+
+ @util.min_libcurl(7, 31, 0)
+ def test_sasl_ir(self):
+ self.curl.setopt(self.curl.SASL_IR, True)