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

« back to all changes in this revision

Viewing changes to tests/test_spawn_helper.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
1
import unittest
 
2
 
4
3
from mock import patch
5
4
 
6
 
from testutils import setup_test_env
 
5
from tests.utils import (
 
6
    setup_test_env,
 
7
)
7
8
setup_test_env()
8
9
from softwarecenter.backend.spawn_helper import SpawnHelper
9
10
 
 
11
 
10
12
class TestSpawnHelper(unittest.TestCase):
11
13
 
12
14
    def test_spawn_helper_lp957599(self):
25
27
 
26
28
 
27
29
if __name__ == "__main__":
28
 
    #import logging
29
 
    #logging.basicConfig(level=logging.DEBUG)
30
30
    unittest.main()