Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
enable disabled tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Sep 8, 2018
1 parent 3456025 commit 9dd7509
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _unittests/ut_sphinxext/test_md_builder.py
Expand Up @@ -32,7 +32,7 @@

class TestMdBuilder(unittest.TestCase):

def _test_md_builder(self):
def test_md_builder(self):
from docutils import nodes as skip_

content = """
Expand Down Expand Up @@ -96,7 +96,7 @@ def _test_md_builder(self):
if t1 in html:
raise Exception(html)

def _test_md_builder_sphinx(self):
def test_md_builder_sphinx(self):
from docutils import nodes as skip_

content = """
Expand Down Expand Up @@ -155,7 +155,7 @@ def _test_md_builder_sphinx(self):
if t1 not in html:
raise Exception(html)

def _test_md_builder_sphinx_table(self):
def test_md_builder_sphinx_table(self):
from docutils import nodes as skip_

content = """
Expand Down Expand Up @@ -213,7 +213,7 @@ def _test_md_builder_sphinx_table(self):
if len(spl) > 2:
raise Exception(html)

def _test_md_only(self):
def test_md_only(self):
from docutils import nodes as skip_

content = """
Expand Down Expand Up @@ -265,7 +265,7 @@ def _test_md_only(self):
if t1 not in text:
raise Exception(text)

def _test_md_reference(self):
def test_md_reference(self):
from docutils import nodes as skip_

content = """
Expand Down

0 comments on commit 9dd7509

Please sign in to comment.