| Current Path : /opt/alt/python27/lib64/python2.7/site-packages/matplotlib/tests/ |
| Current File : //opt/alt/python27/lib64/python2.7/site-packages/matplotlib/tests/test_basic.py |
from nose.tools import assert_equal
from matplotlib.testing.decorators import knownfailureif
def test_simple():
assert_equal(1+1,2)
@knownfailureif(True)
def test_simple_knownfail():
assert_equal(1+1,3)