aboutsummaryrefslogtreecommitdiff
path: root/bleach/tests/tools.py
diff options
context:
space:
mode:
authorPer Andersson <avtobiff@gmail.com>2014-01-30 01:25:15 +0100
committerPer Andersson <avtobiff@gmail.com>2014-01-30 01:25:15 +0100
commitc084fbcb2e2f2f167c8d65ca1ecfee406f14c24b (patch)
tree6c5ca20a48eb50ea000748abb5374247d6de1888 /bleach/tests/tools.py
parent973d326d7847161827a8f75b5f589008a83a342d (diff)
parent6cff86ce6de27fbd4f9fc07716fb1205b14ffae4 (diff)
downloadpython-bleach-c084fbcb2e2f2f167c8d65ca1ecfee406f14c24b.tar
python-bleach-c084fbcb2e2f2f167c8d65ca1ecfee406f14c24b.tar.gz
Merge tag 'upstream/1.4'
Upstream version 1.4 # gpg: Signature made Thu 30 Jan 2014 01:25:12 AM CET using RSA key ID 79F492F8 # gpg: Good signature from "Per Andersson <avtobiff@fripost.org>" # gpg: aka "Per Andersson <avtobiff@debian.org>" # gpg: aka "Per Andersson <avtobiff@gmail.com>" # gpg: aka "Per Andersson <avtobiff@foo.nu>"
Diffstat (limited to 'bleach/tests/tools.py')
-rw-r--r--bleach/tests/tools.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bleach/tests/tools.py b/bleach/tests/tools.py
new file mode 100644
index 0000000..87f926c
--- /dev/null
+++ b/bleach/tests/tools.py
@@ -0,0 +1,7 @@
+
+
+def in_(l, a, msg=None):
+ """Shorthand for 'assert a in l, "%r not in %r" % (a, l)
+ """
+ if not a in l:
+ raise AssertionError(msg or "%r not in %r" % (a, l))