mirror of
https://gitee.com/bianbu-linux/factorytest
synced 2025-06-28 19:13:36 -04:00
19 lines
No EOL
416 B
Python
19 lines
No EOL
416 B
Python
from unittest import TestCase
|
|
|
|
import os
|
|
|
|
class eMMCTest(TestCase):
|
|
LANGUAGES = {
|
|
'zh': {
|
|
'eMMCTest': 'eMMC',
|
|
'test_identify': '识别'
|
|
},
|
|
'en': {
|
|
'eMMCTest': 'eMMC',
|
|
'test_identify': 'Identify'
|
|
}
|
|
}
|
|
|
|
def test_identify(self):
|
|
block_file = '/sys/class/block/mmcblk2'
|
|
self.assertTrue(os.path.exists(block_file)) |