コード例 #1
0
ファイル: test_decorators.py プロジェクト: Cadair/astropy
def test_setup_failures3():
    # same attribute in keeps and returns
    with pytest.raises(ValueError):
        support_nddata(repack=True, keeps=['mask'], returns=['data', 'mask'])
コード例 #2
0
ファイル: test_decorators.py プロジェクト: Cadair/astropy
def test_setup_failures2():
    # returns but no repack
    with pytest.raises(ValueError):
        support_nddata(returns=['data'])
コード例 #3
0
ファイル: test_decorators.py プロジェクト: Cadair/astropy
def test_setup_failures9():
    # keeps but no repack
    with pytest.raises(ValueError):
        support_nddata(keeps=['unit'])
コード例 #4
0
ファイル: test_decorators.py プロジェクト: Cadair/astropy
def test_setup_failures1():
    # repack but no returns
    with pytest.raises(ValueError):
        support_nddata(repack=True)
コード例 #5
0
def test_setup_failures3():
    # same attribute in keeps and returns
    with pytest.raises(ValueError):
        support_nddata(repack=True, keeps=['mask'], returns=['data', 'mask'])
コード例 #6
0
def test_setup_failures9():
    # keeps but no repack
    with pytest.raises(ValueError):
        support_nddata(keeps=['unit'])
コード例 #7
0
def test_setup_failures2():
    # returns but no repack
    with pytest.raises(ValueError):
        support_nddata(returns=['data'])
コード例 #8
0
def test_setup_failures1():
    # repack but no returns
    with pytest.raises(ValueError):
        support_nddata(repack=True)