~ubuntu-branches/ubuntu/gutsy/bzr/gutsy

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_debug.py

  • Committer: Bazaar Package Importer
  • Author(s): Etienne Goyer
  • Date: 2007-04-27 17:53:49 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20070427175349-rvowqx994rfuikuu
Tags: 0.16~rc1-0ubuntu1
New upstream development release 

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Blackbox tests for -D debug options"""
18
18
 
19
19
import os
 
20
import signal
 
21
import subprocess
 
22
import sys
 
23
import time
20
24
 
21
 
from bzrlib.tests import TestCase
 
25
from bzrlib.tests import TestCase, TestSkipped
22
26
 
23
27
class TestDebugOption(TestCase):
24
28