adding slow_disabled decorator on html check unit tests

This commit is contained in:
kakwa 2016-07-29 07:36:32 +02:00
parent 52557afa6a
commit 2e98e380df
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@ from cherrypy.process import plugins, servers
from cherrypy import Application
import logging
from ldapcherry.lclogging import *
from disable import *
import json
cherrypy.session = {}
@ -245,6 +246,7 @@ class TestError(object):
app._modify(modify_form)
app._deleteuser('test')
@slow_disabled
def testHtml(self):
app = LdapCherry()
loadconf('./tests/cfg/ldapcherry_test.ini', app)
@ -266,6 +268,7 @@ class TestError(object):
loadconf('./tests/cfg/ldapcherry_test.ini', app)
app.modify('ssmith'),
@slow_disabled
def testNaughtyStrings(self):
app = LdapCherry()
loadconf('./tests/cfg/ldapcherry_test.ini', app)