Tests: Check both raw and stripped data

The values in the raw-data should never be different than the
coresponding fields in the data-struct. Apparently they can...
This is but on one location, but this checks for that oddity.
This commit is contained in:
Simon Albinsson
2018-04-23 20:48:26 +00:00
parent 89039475fd
commit 04e41743de

View File

@@ -24,7 +24,9 @@ class SimpleReadTests(unittest.TestCase):
self.sgp=sgp30.sgp30.Sgp30(self.bus)
def test_read(self):
self.assertEqual(self.sgp.read_measurements().data,[400,6])
d=self.sgp.read_measurements()
self.assertEqual(d.raw,[1, 144, 76, 0, 6, 39])
self.assertEqual(d.data,[400,6])
#No real need to do this super-carefully
#or i will just be testing my own test code