~pitti/usb-creator/pygi

1
2
3
4
5
6
7
8
9
10
11
12
from usbcreator.backends.windows import WindowsBackend
import unittest

class TestWindowsBackend(unittest.TestCase):
    def test_backend(self):
        b = WindowsBackend()
        b.detect_devices()

    def test_format(self):
        b = WindowsBackend()
        b._device_added(u'E:\\')
        b.format(u'E:\\')