~ubuntu-branches/ubuntu/oneiric/moin/oneiric-security

« back to all changes in this revision

Viewing changes to MoinMoin/script/migration/_tests/test_conv160a_wiki.py

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-03-30 12:55:34 UTC
  • mfrom: (0.1.17 sid)
  • Revision ID: james.westby@ubuntu.com-20100330125534-4c2ufc1rok24447l
Tags: 1.9.2-2ubuntu1
* Merge from Debian testing (LP: #521834). Based on work by Stefan Ebner.
  Remaining changes:
 - Remove python-xml from Suggests field, the package isn't anymore in
   sys.path.
 - Demote fckeditor from Recommends to Suggests; the code was previously
   embedded in moin, but it was also disabled, so there's no reason for us
   to pull this in by default currently. Note: This isn't necessary anymore
   but needs a MIR for fckeditor, so postpone dropping this change until
   lucid+1
* debian/rules:
  - Replace hardcoded python2.5 with python* and hardcore python2.6 for ln
* debian/control.in: drop versioned depends on cdbs

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import py
21
21
#py.test.skip("broken")
22
22
 
 
23
from MoinMoin import i18n
 
24
i18n_wikiLanguages = i18n.wikiLanguages
 
25
# convert_wiki overwrites i18n.wikiLanguages, we revert this change for following tests
23
26
from MoinMoin.script.migration._conv160a_wiki import convert_wiki
 
27
i18n.wikiLanguages = i18n_wikiLanguages
24
28
 
25
29
class TestWikiConversion:
26
30
    """ test the wiki markup conversion 1.6.0a -> 1.6.0 """