12 lines
129 B
12 lines
129 B
7 years ago
|
import os
|
||
|
from panda import Panda
|
||
|
|
||
|
def test_recover():
|
||
|
p = Panda()
|
||
|
p.recover()
|
||
|
|
||
|
def test_flash():
|
||
|
p = Panda()
|
||
|
p.flash()
|
||
|
|