diff options
Diffstat (limited to 'comm/mail/test/marionette')
-rw-r--r-- | comm/mail/test/marionette/manifest.ini | 1 | ||||
-rw-r--r-- | comm/mail/test/marionette/moz.build | 6 | ||||
-rw-r--r-- | comm/mail/test/marionette/test_empty.py | 10 |
3 files changed, 17 insertions, 0 deletions
diff --git a/comm/mail/test/marionette/manifest.ini b/comm/mail/test/marionette/manifest.ini new file mode 100644 index 0000000000..20a610032a --- /dev/null +++ b/comm/mail/test/marionette/manifest.ini @@ -0,0 +1 @@ +[test_empty.py] diff --git a/comm/mail/test/marionette/moz.build b/comm/mail/test/marionette/moz.build new file mode 100644 index 0000000000..e4758a591b --- /dev/null +++ b/comm/mail/test/marionette/moz.build @@ -0,0 +1,6 @@ +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +MARIONETTE_UNIT_MANIFESTS += ["manifest.ini"] diff --git a/comm/mail/test/marionette/test_empty.py b/comm/mail/test/marionette/test_empty.py new file mode 100644 index 0000000000..00ab55de30 --- /dev/null +++ b/comm/mail/test/marionette/test_empty.py @@ -0,0 +1,10 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +from marionette_harness import MarionetteTestCase + + +class TestMain(MarionetteTestCase): + def test_empty(self): + return |