コード例 #1
0
ファイル: test_random.py プロジェクト: tomzhang/mars-1
    def testUnexpectedKey(self):
        with self.assertRaises(ValueError):
            rand(10, 10, chunks=5)

        with self.assertRaises(ValueError):
            randn(10, 10, chunks=5)
コード例 #2
0
ファイル: test_random.py プロジェクト: qinxuye/mars
def test_unexpected_key():
    with pytest.raises(ValueError):
        rand(10, 10, chunks=5)

    with pytest.raises(ValueError):
        randn(10, 10, chunks=5)