D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
matplotlib
/
tests
/
Filename :
test_basic.py
back
Copy
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)