~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_symbol_versioning.py

(robertc) Fix lp: urls behind an https proxy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
22
22
from bzrlib.symbol_versioning import (
23
23
    deprecated_function,
24
24
    deprecated_in,
 
25
    deprecated_list,
25
26
    deprecated_method,
26
27
    )
27
28
from bzrlib.tests import TestCase
240
241
        symbol_versioning.suppress_deprecation_warnings()
241
242
        self.assertFirstWarning('ignore', DeprecationWarning)
242
243
 
243
 
    def test_set_restore_filters(self):
244
 
        original_filters = warnings.filters[:]
245
 
        symbol_versioning.suppress_deprecation_warnings()()
246
 
        self.assertEqual(original_filters, warnings.filters)
247
 
 
248
244
    def test_suppress_deprecation_with_warning_filter(self):
249
245
        """don't suppress if we already have a filter"""
250
246
        warnings.filterwarnings('error', category=Warning)