class documentation

class TestConcatenate:

View In Hierarchy

Undocumented

Method test​_bad​_out​_shape Undocumented
Method test​_concatenate Undocumented
Method test_concatenate_axis_​None Undocumented
Method test​_dtype​_with​_promotion Undocumented
Method test​_exceptions Undocumented
Method test_large_concatenate_axis_​None Undocumented
Method test​_operator​_concat Undocumented
Method test​_out​_and​_dtype Undocumented
Method test​_returns​_copy Undocumented
Method test​_string​_dtype​_does​_not​_inspect Undocumented
Method test​_subarray​_error Undocumented
def test_bad_out_shape(self):

Undocumented

def test_concatenate(self):

Undocumented

def test_concatenate_axis_None(self):

Undocumented

@pytest.mark.parametrize('axis', [None, 0])
@pytest.mark.parametrize('string_dt', ['S', 'U', 'S0', 'U0'])
@pytest.mark.parametrize('arrs', [([0.0]), ([0.0], [1]), ([0], ['string'], [1.0])])
def test_dtype_with_promotion(self, arrs, string_dt, axis):

Undocumented

def test_exceptions(self):

Undocumented

def test_large_concatenate_axis_None(self):

Undocumented

@pytest.mark.skipif(IS_PYPY, reason='PYPY handles sq_concat, nb_add differently than cpython')
def test_operator_concat(self):

Undocumented

@pytest.mark.parametrize('axis', [None, 0])
@pytest.mark.parametrize('out_dtype', ['c8', 'f4', 'f8', '>f8', 'i8', 'S4'])
@pytest.mark.parametrize('casting', ['no', 'equiv', 'safe', 'same_kind', 'unsafe'])
def test_out_and_dtype(self, axis, out_dtype, casting):

Undocumented

def test_returns_copy(self):

Undocumented

@pytest.mark.parametrize('axis', [None, 0])
def test_string_dtype_does_not_inspect(self, axis):

Undocumented

@pytest.mark.parametrize('axis', [None, 0])
def test_subarray_error(self, axis):

Undocumented