MDL-57282 behat: Deprecate I go to X in the course gradebook
authorJohn Okely <john@moodle.com>
Fri, 6 Jan 2017 05:40:42 +0000 (13:40 +0800)
committerJohn Okely <john@moodle.com>
Fri, 6 Jan 2017 05:47:19 +0000 (13:47 +0800)
grade/tests/behat/behat_grade.php
lib/tests/behat/behat_deprecated.php

index 4a1bbe9..bc1f2ea 100644 (file)
@@ -301,16 +301,4 @@ class behat_grade extends behat_base {
 
         $this->select_in_gradebook_tabs($gradepath);
     }
-
-    /**
-     * Navigates to the course gradebook and selects a specified item from the grade navigation tabs.
-     *
-     * @todo MDL-57282 deprecate in Moodle 3.3
-     *
-     * @Given /^I go to "(?P<gradepath_string>(?:[^"]|\\")*)" in the course gradebook$/
-     * @param string $gradepath
-     */
-    public function i_go_to_in_the_course_gradebook($gradepath) {
-        $this->execute('behat_grade::i_navigate_to_in_the_course_gradebook', $gradepath);
-    }
 }
index 46493ea..118d89a 100644 (file)
@@ -297,6 +297,19 @@ class behat_deprecated extends behat_base {
         $this->deprecated_message($alternative, true);
     }
 
+    /**
+     * Navigates to the course gradebook and selects a specified item from the grade navigation tabs.
+     * @Given /^I go to "(?P<gradepath_string>(?:[^"]|\\")*)" in the course gradebook$/
+     * @param string $gradepath
+     * @deprecated since Moodle 3.3 MDL-57282 - please do not use this step any more.
+     */
+    public function i_go_to_in_the_course_gradebook($gradepath) {
+        $alternative = 'I navigate to "' . $this->escape($gradepath) . '"  in the course gradebook';
+        $this->deprecated_message($alternative);
+
+        $this->execute('behat_grade::i_navigate_to_in_the_course_gradebook', $gradepath);
+    }
+
     /**
      * Throws an exception if $CFG->behat_usedeprecated is not allowed.
      *