de-heath the tests
[naja.git] / naja / actions.py
index 9e3e5c3a4cb0b68c974f9c42321984deab3bc488..2b4d2128d4b8ecba5dd7a230524e75300305160d 100644 (file)
@@ -26,7 +26,9 @@ class LocationAction(object):
             return False
 
     def export(self):
-        raise NotImplementedError("TODO")
+        return {'required_bits': list(self.required_bits),
+                'data': self.data,
+                'action_class': self.__class__.__name__}
 
 
 class DoNothing(LocationAction):
@@ -35,12 +37,8 @@ class DoNothing(LocationAction):
     def perform_action(self, board, location):
         pass
 
-    def export(self):
-        return {'required_bits': list(self.required_bits),
-                'action_class': 'DoNothing'}
-
 
-class LoseHeathOrMSB(LocationAction):
+class LoseHealthOrMSB(LocationAction):
     TEXT = "Lose health. If MSB is set, it will be cleared instead."
 
     def perform_action(self, board, location):