~nataliabidart/software-center/birth-of-a-website.1

« back to all changes in this revision

Viewing changes to tests/test_htmlize.py

  • Committer: Michael Vogt
  • Date: 2012-06-11 15:58:19 UTC
  • mfrom: (3020.1.9 the-organizer)
  • Revision ID: michael.vogt@ubuntu.com-20120611155819-rfz96g7s7bysskrt
mergedĀ lp:~nataliabidart/software-center/the-organizer

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
 
from testutils import setup_test_env
 
1
from tests.utils import (
 
2
    setup_test_env,
 
3
)
4
4
setup_test_env()
5
5
from softwarecenter.utils import htmlize_package_description
6
6
 
99
99
            self.assertEqual(star_count, li_count)
100
100
 
101
101
if __name__ == "__main__":
102
 
    import logging
103
 
    logging.basicConfig(level=logging.DEBUG)
104
102
    unittest.main()
105
103