예제 #1
0
파일: test_Utils.py 프로젝트: dee42/j5test
def test_catchskip():
    """Tests that a properly decorated method is skipped - this must be run..."""
    assert True
    Utils.skip(
        "This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
예제 #2
0
파일: test_Utils.py 프로젝트: dee42/j5test
def test_skiptest():
    """checks that this method will be skipped"""
    assert True
    Utils.skip(
        "This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
예제 #3
0
파일: test_Utils.py 프로젝트: j5int/j5test
def test_catchskip():
    """Tests that a properly decorated method is skipped - this must be run..."""
    assert True
    Utils.skip("This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
예제 #4
0
파일: test_Utils.py 프로젝트: j5int/j5test
def test_skiptest():
    """checks that this method will be skipped"""
    assert True
    Utils.skip("This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
예제 #5
0
 def skipmeth(self):
     Utils.skip(message)
예제 #6
0
 def skipmeth(self):
     Utils.skip(message)