MCPcopy Index your code
hub / github.com/python/cpython / test_quiet

Method test_quiet

Lib/test/test_compileall.py:739–743  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

737 ))
738
739 def test_quiet(self):
740 noisy = self.assertRunOK(self.pkgdir)
741 quiet = self.assertRunOK('-q', self.pkgdir)
742 self.assertNotEqual(b'', noisy)
743 self.assertEqual(b'', quiet)
744
745 def test_silent(self):
746 script_helper.make_script(self.pkgdir, 'crunchyfrog', 'bad(syntax')

Callers

nothing calls this directly

Calls 3

assertRunOKMethod · 0.95
assertNotEqualMethod · 0.80
assertEqualMethod · 0.45

Tested by

no test coverage detected