mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
18 lines
263 B
Python
18 lines
263 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
test_i18n
|
||
|
~~~~~~~~~
|
||
|
|
||
|
Test locale features.
|
||
|
|
||
|
:copyright: 2008 by Georg Brandl.
|
||
|
:license: BSD.
|
||
|
"""
|
||
|
|
||
|
from util import *
|
||
|
|
||
|
|
||
|
@with_testapp(confoverrides={'language': 'de'})
|
||
|
def test_i18n(app):
|
||
|
app.builder.build_all()
|