bgneal@868: """Unit tests for the ssl_images management command.""" bgneal@868: bgneal@868: import unittest bgneal@868: bgneal@868: from core.management.commands.ssl_images import process_post bgneal@868: bgneal@868: bgneal@868: class ProcessPostTestCase(unittest.TestCase): bgneal@868: bgneal@868: def test_empty_string(self): bgneal@868: s = process_post('') bgneal@868: self.assertEqual(s, '')