diff --git a/tests/test_system.py b/tests/test_system.py index e563845..318869a 100644 --- a/tests/test_system.py +++ b/tests/test_system.py @@ -31,7 +31,11 @@ class TestSystemWithCheckGarbage(object): return windows.system.services def test_logicaldrives(self): - return windows.system.logicaldrives + for ldrive in windows.system.logicaldrives: + assert ldrive + assert ldrive.name + assert ldrive.path + assert ldrive.volume_info def test_wmi(self): return windows.system.wmi