Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / features / language.feature
diff --git a/vendor/drupal/drupal-extension/features/language.feature b/vendor/drupal/drupal-extension/features/language.feature
new file mode 100644 (file)
index 0000000..8bfb73a
--- /dev/null
@@ -0,0 +1,21 @@
+@api @d7 @d8
+Feature: Language support
+  In order to demonstrate the language integration
+  As a developer for the Behat Extension
+  I need to provide test cases for the language support
+
+  # These test scenarios assume to have a clean installation of the "standard"
+  # profile and that the "behat_test" module from the "fixtures/" folder is
+  # enabled on the site.
+
+  Scenario: Enable multiple languages
+    Given the following languages are available:
+      | languages |
+      | en        |
+      | fr        |
+      | de        |
+    And I am logged in as a user with the 'administrator' role
+    When I go to "admin/config/regional/language"
+    Then I should see "English"
+    And I should see "French"
+    And I should see "German"