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:
Diffstat (limited to 'spec/features/profiles/user_visits_profile_spec.rb')
-rw-r--r--spec/features/profiles/user_visits_profile_spec.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/features/profiles/user_visits_profile_spec.rb b/spec/features/profiles/user_visits_profile_spec.rb
index 273d52996d3..d90ac439eee 100644
--- a/spec/features/profiles/user_visits_profile_spec.rb
+++ b/spec/features/profiles/user_visits_profile_spec.rb
@@ -29,6 +29,24 @@ RSpec.describe 'User visits their profile' do
expect(find('.file-content')).to have_content('testme')
end
+ it 'hides empty user readme' do
+ project = create(:project, :repository, :public, path: user.username, namespace: user.namespace)
+
+ Files::UpdateService.new(
+ project,
+ user,
+ start_branch: 'master',
+ branch_name: 'master',
+ commit_message: 'Update feature',
+ file_path: 'README.md',
+ file_content: ''
+ ).execute
+
+ visit(user_path(user))
+
+ expect(page).not_to have_selector('.file-content')
+ end
+
context 'when user has groups' do
let(:group) do
create :group do |group|