Exemple #1
0
 def compress_string(self, s):
     """Gzip a given string."""
     zbuf = StringIO()
     zfile = gzip.GzipFile(mode='wb', compresslevel=6, fileobj=zbuf)
     zfile.write(s)
     zfile.close()
     return zbuf.getvalue()
 def compress_string(self, s):
     """Gzip a given string."""
     zbuf = StringIO()
     zfile = gzip.GzipFile(mode='wb', compresslevel=6, fileobj=zbuf)
     zfile.write(s)
     zfile.close()
     return zbuf.getvalue()
 def test_some_output(self):
     out = StringIO()
     call_command('show_template_tags', stdout=out)
     output = out.getvalue()
     # Once django_extension is installed during tests it should appear with
     # its templatetags
     self.assertIn('django_extensions', output)
     # let's check at least one
     self.assertIn('truncate_letters', output)
 def test_some_output(self):
     out = StringIO()
     call_command('show_template_tags', stdout=out)
     output = out.getvalue()
     # Once django_extension is installed during tests it should appear with
     # its templatetags
     self.assertIn('django_extensions', output)
     # let's check at least one
     self.assertIn('truncate_letters', output)