Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_gridspec.py
1 parent 908b31b commit 4c1abe4Copy full SHA for 4c1abe4
1 file changed
lib/matplotlib/tests/test_gridspec.py
@@ -0,0 +1,8 @@
1
+import matplotlib.gridspec as gridspec
2
+from nose.tools import assert_equal
3
+
4
5
+def test_equal():
6
+ gs = gridspec.GridSpec(2, 1)
7
+ assert_equal(gs[0, 0], gs[0, 0])
8
+ assert_equal(gs[:, 0], gs[:, 0])
0 commit comments