mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
9 lines
239 B
Python
9 lines
239 B
Python
|
|
try:
|
||
|
|
import unittest2 as unittest
|
||
|
|
except ImportError:
|
||
|
|
import unittest
|
||
|
|
|
||
|
|
# Python 2.7 - 3.1
|
||
|
|
if not hasattr(unittest.TestCase, 'assertRaisesRegex'):
|
||
|
|
unittest.TestCase.assertRaisesRegex = unittest.TestCase.assertRaisesRegexp
|