mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-03 14:13:53 +08:00
12 lines
129 B
Python
12 lines
129 B
Python
|
|
import os
|
||
|
|
from panda import Panda
|
||
|
|
|
||
|
|
def test_recover():
|
||
|
|
p = Panda()
|
||
|
|
p.recover()
|
||
|
|
|
||
|
|
def test_flash():
|
||
|
|
p = Panda()
|
||
|
|
p.flash()
|
||
|
|
|