예제 #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()
예제 #2
0
def test_simple_fly():
    mm = MockFlyer(det, motor)
    RE(fly_gen(mm, -1, 1, 15))
    assert mm._future.done()
예제 #3
0
def test_simple_fly():
    mm = MockFlyer(det, motor)
    RE(fly_gen(mm, -1, 1, 15))
    assert mm._future.done()
예제 #4
0
def test_simple_fly(RE, hw):
    hw.flyer1.loop = RE.loop
    RE(fly_gen(hw.flyer1))
    assert hw.flyer1._future.done()
예제 #5
0
def test_simple_fly(RE, hw):
    hw.flyer1.loop = RE.loop
    RE(fly_gen(hw.flyer1))
예제 #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()
예제 #7
0
def test_simple_fly(RE, hw):
    hw.flyer1.loop = RE.loop
    RE(fly_gen(hw.flyer1))
    assert hw.flyer1._future.done()