diff -r 000000000000 -r 6474c204b198 dom/voicemail/test/marionette/test_voicemail_statuschanged.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/voicemail/test/marionette/test_voicemail_statuschanged.py Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,14 @@ +from marionette_test import MarionetteTestCase +import os + +class TestVoicemailStatusChanged(MarionetteTestCase): + + def testStatusChanged(self): + this_dir = os.path.abspath(os.path.dirname(__file__)) + pdu_builder_path = os.path.join(this_dir, "pdu_builder.js") + self.marionette.import_script(pdu_builder_path) + + test_path = os.path.join(this_dir, "test_voicemail_statuschanged.js") + test = open(test_path, "r").read() + self.marionette.set_script_timeout(30000) + self.marionette.execute_async_script(test)