|
@ -19,6 +19,7 @@ |
|
|
|
|
|
|
|
|
import os |
|
|
import os |
|
|
import logging |
|
|
import logging |
|
|
|
|
|
import unittest |
|
|
|
|
|
|
|
|
from odoo.tests import common |
|
|
from odoo.tests import common |
|
|
|
|
|
|
|
@ -39,5 +40,6 @@ class ParseReStructuredTextTestCase(common.HttpCase): |
|
|
def test_rst2html(self): |
|
|
def test_rst2html(self): |
|
|
self.assertTrue(parse_rst.rst2html("Test")) |
|
|
self.assertTrue(parse_rst.rst2html("Test")) |
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipIf(os.environ.get('TRAVIS', False), "Skipped for Travis CI") |
|
|
def test_slugify(self): |
|
|
def test_slugify(self): |
|
|
self.assertTrue(helper.slugify("Test")) |
|
|
self.assertTrue(helper.slugify("Test")) |