mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-22 17:55:57 +01:00
9 lines
158 B
Python
9 lines
158 B
Python
import unittest
|
|
|
|
class SomeTest(unittest.TestCase):
|
|
def test_atest(self):
|
|
"""
|
|
this test passes
|
|
"""
|
|
self.assertEqual(1, 2)
|