empty-string-assertion.py
unittest TestCase cleanup contextPython unittest TestCase marker
SHA-25694ddda0b9c71c9093052ea46bacad633b98eddccc2f7452d2402bb4248bce60e
MaleculeH₂(Cm₂F)Md(Pa)
Evidence
1:26… ttest asserting on an empty-string record field with
2# a doku.php documentation URL nearby is not a multipart upload. The
3# client-bypass composite must see a `files` container, not just ("", ...)
4# and a .php URL within 200 bytes.
5import unittest
6
7
8class TestParseTestRecord(unittest.TestCase):
9 def test_only_strict(self):
10 record = {
11 "onlyStrict": "",
12 "bestPractice": "http://wiki.ecmascript.org/doku.php?id=conventions:no_non_standard_strict_decls",
13 }
14 self.assertEqual("", record['onlyStrict'])
15 self.assertEqual(
16 …