Ejemplo n.º 1
0
def test_simple_fly(fresh_RE):
    RE = fresh_RE
    mm = MockFlyer('wheeeeee', det, motor, -1, 1, 15, RE.loop)
    RE(fly_gen(mm))
    assert mm._future.done()
Ejemplo n.º 2
0
def test_simple_fly():
    mm = MockFlyer(det, motor)
    RE(fly_gen(mm, -1, 1, 15))
    assert mm._future.done()
Ejemplo n.º 3
0
def test_simple_fly():
    mm = MockFlyer(det, motor)
    RE(fly_gen(mm, -1, 1, 15))
    assert mm._future.done()
Ejemplo n.º 4
0
def test_simple_fly(RE, hw):
    hw.flyer1.loop = RE.loop
    RE(fly_gen(hw.flyer1))
    assert hw.flyer1._future.done()
Ejemplo n.º 5
0
def test_simple_fly(RE, hw):
    hw.flyer1.loop = RE.loop
    RE(fly_gen(hw.flyer1))
Ejemplo n.º 6
0
def test_simple_fly(fresh_RE):
    RE = fresh_RE
    mm = MockFlyer('wheeeeee', det, motor, -1, 1, 15, RE.loop)
    RE(fly_gen(mm))
    assert mm._future.done()
Ejemplo n.º 7
0
def test_simple_fly(RE, hw):
    hw.flyer1.loop = RE.loop
    RE(fly_gen(hw.flyer1))
    assert hw.flyer1._future.done()