class documentation

class TestConcatenate: (source)

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): (source)

Undocumented

def test_concatenate(self): (source)

Undocumented

def test_concatenate_axis_None(self): (source)

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): (source)

Undocumented

def test_exceptions(self): (source)

Undocumented

def test_large_concatenate_axis_None(self): (source)

Undocumented

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

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): (source)

Undocumented

def test_returns_copy(self): (source)

Undocumented

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

Undocumented

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

Undocumented