Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wortschack <mwortschack@gitlab.com>2019-01-10 23:08:41 +0300
committerMartin Wortschack <mwortschack@gitlab.com>2019-01-10 23:09:00 +0300
commitf5cde3a781a63ebd5630b0eb1fee79fc9750d6be (patch)
tree7edd5d67e34f602405f0f605edaa150700fea69e /spec/features/projects/settings
parent4aaea7b3c7d52809824454c3977503485b849891 (diff)
Rename tags to topics
- Rename CSS class - Fix broken test - Update project settings docs - Update general project settings image - Rename helper methods
Diffstat (limited to 'spec/features/projects/settings')
-rw-r--r--spec/features/projects/settings/user_tags_project_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects/settings/user_tags_project_spec.rb b/spec/features/projects/settings/user_tags_project_spec.rb
index 9357215ae6f..e3f06c042b9 100644
--- a/spec/features/projects/settings/user_tags_project_spec.rb
+++ b/spec/features/projects/settings/user_tags_project_spec.rb
@@ -9,13 +9,13 @@ describe 'Projects > Settings > User tags a project' do
visit edit_project_path(project)
end
- it 'sets project tags' do
- fill_in 'Tags', with: 'tag1, tag2'
+ it 'sets project topics' do
+ fill_in 'Topics', with: 'topic1, topic2'
page.within '.general-settings' do
click_button 'Save changes'
end
- expect(find_field('Tags').value).to eq 'tag1, tag2'
+ expect(find_field('Topics').value).to eq 'topic1, topic2'
end
end