You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
626 B
Python
27 lines
626 B
Python
import matplotlib.gridspec as gridspec
|
|
import pytest
|
|
|
|
|
|
def test_equal():
|
|
gs = gridspec.GridSpec(2, 1)
|
|
assert gs[0, 0] == gs[0, 0]
|
|
assert gs[:, 0] == gs[:, 0]
|
|
|
|
|
|
def test_width_ratios():
|
|
"""
|
|
Addresses issue #5835.
|
|
See at https://github.com/matplotlib/matplotlib/issues/5835.
|
|
"""
|
|
with pytest.raises(ValueError):
|
|
gridspec.GridSpec(1, 1, width_ratios=[2, 1, 3])
|
|
|
|
|
|
def test_height_ratios():
|
|
"""
|
|
Addresses issue #5835.
|
|
See at https://github.com/matplotlib/matplotlib/issues/5835.
|
|
"""
|
|
with pytest.raises(ValueError):
|
|
gridspec.GridSpec(1, 1, height_ratios=[2, 1, 3])
|