コード例 #1
0
ファイル: test_interactive.py プロジェクト: postelrich/blaze
def test_concretehead_failure():
    t = symbol('t', 'var * {x:int, y:int}')
    d = t[t['x'] > 100]
    with pytest.raises(ValueError):
        concrete_head(d)
コード例 #2
0
def test_concretehead_failure():
    t = symbol('t', 'var * {x:int, y:int}')
    d = t[t['x'] > 100]
    with pytest.raises(ValueError):
        concrete_head(d)
コード例 #3
0
ファイル: test_interactive.py プロジェクト: gyenney/Tools
def test_concretehead_failure():
    t = symbol("t", "var * {x:int, y:int}")
    d = t[t["x"] > 100]
    with pytest.raises(ValueError):
        concrete_head(d)