Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / features / language.feature
1 @api @d7 @d8
2 Feature: Language support
3   In order to demonstrate the language integration
4   As a developer for the Behat Extension
5   I need to provide test cases for the language support
6
7   # These test scenarios assume to have a clean installation of the "standard"
8   # profile and that the "behat_test" module from the "fixtures/" folder is
9   # enabled on the site.
10
11   Scenario: Enable multiple languages
12     Given the following languages are available:
13       | languages |
14       | en        |
15       | fr        |
16       | de        |
17     And I am logged in as a user with the 'administrator' role
18     When I go to "admin/config/regional/language"
19     Then I should see "English"
20     And I should see "French"
21     And I should see "German"