Bug 1255955 - Rename checkbox test to not conflict with select tests; r?automatedtester draft
authorAndreas Tolfsen <ato@mozilla.com>
Fri, 05 Aug 2016 10:52:07 +0100
changeset 400449 1761b5d4e0e6f4a758605c1ccc8f439f6cf8664d
parent 400444 6e191a55c3d23e83e6a2e72e4e80c1dc21516493
child 400450 72f96200c7ee05aea61b4e5d29ab3ac9a0e9be31
push id26147
push userbmo:ato@mozilla.com
push dateSat, 13 Aug 2016 19:00:38 +0000
reviewersautomatedtester
bugs1255955
milestone51.0a1
Bug 1255955 - Rename checkbox test to not conflict with select tests; r?automatedtester MozReview-Commit-ID: 3SIFP3mUPhT
testing/marionette/harness/marionette/tests/unit/test_checkbox.py
testing/marionette/harness/marionette/tests/unit/test_checkbox_chrome.py
testing/marionette/harness/marionette/tests/unit/test_selected.py
testing/marionette/harness/marionette/tests/unit/test_selected_chrome.py
testing/marionette/harness/marionette/tests/unit/unit-tests.ini
new file mode 100644
--- /dev/null
+++ b/testing/marionette/harness/marionette/tests/unit/test_checkbox.py
@@ -0,0 +1,16 @@
+# 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 import MarionetteTestCase
+from marionette_driver.by import By
+
+
+class TestCheckbox(MarionetteTestCase):
+    def test_selected(self):
+        test_html = self.marionette.absolute_url("test.html")
+        self.marionette.navigate(test_html)
+        box = self.marionette.find_element(By.NAME, "myCheckBox")
+        self.assertFalse(box.is_selected())
+        box.click()
+        self.assertTrue(box.is_selected())
rename from testing/marionette/harness/marionette/tests/unit/test_selected_chrome.py
rename to testing/marionette/harness/marionette/tests/unit/test_checkbox_chrome.py
deleted file mode 100644
--- a/testing/marionette/harness/marionette/tests/unit/test_selected.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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 import MarionetteTestCase
-from marionette_driver.by import By
-
-
-class TestSelected(MarionetteTestCase):
-    def test_selected(self):
-        test_html = self.marionette.absolute_url("test.html")
-        self.marionette.navigate(test_html)
-        box = self.marionette.find_element(By.NAME, "myCheckBox")
-        self.assertFalse(box.is_selected())
-        box.click()
-        self.assertTrue(box.is_selected())
--- a/testing/marionette/harness/marionette/tests/unit/unit-tests.ini
+++ b/testing/marionette/harness/marionette/tests/unit/unit-tests.ini
@@ -8,18 +8,18 @@ skip-if = buildapp == 'b2g'
 
 [test_expectedfail.py]
 expected = fail
 [test_import_script.py]
 skip-if = buildapp == 'b2g'
 [test_click.py]
 [test_click_chrome.py]
 skip-if = buildapp == 'b2g'
-[test_selected.py]
-[test_selected_chrome.py]
+[test_checkbox.py]
+[test_checkbox_chrome.py]
 skip-if = buildapp == 'b2g'
 [test_elementsize.py]
 [test_position.py]
 [test_rendered_element.py]
 [test_chrome_element_css.py]
 skip-if = buildapp == 'b2g'
 [test_element_state.py]
 [test_element_state_chrome.py]