de-heath the tests
[naja.git] / naja / actions.py
index 5599bd73b2d724e6986bc8a58d3ecf7e3ba2da16..2b4d2128d4b8ecba5dd7a230524e75300305160d 100644 (file)
@@ -25,6 +25,11 @@ class LocationAction(object):
         else:
             return False
 
+    def export(self):
+        return {'required_bits': list(self.required_bits),
+                'data': self.data,
+                'action_class': self.__class__.__name__}
+
 
 class DoNothing(LocationAction):
     TEXT = "No effect."
@@ -33,7 +38,7 @@ class DoNothing(LocationAction):
         pass
 
 
-class LoseHeathOrMSB(LocationAction):
+class LoseHealthOrMSB(LocationAction):
     TEXT = "Lose health. If MSB is set, it will be cleared instead."
 
     def perform_action(self, board, location):