summaryrefslogtreecommitdiff
path: root/spec/views
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-06 15:07:26 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-06 15:07:26 +0000
commit506159637da758f448818b834f8482238a9eb4eb (patch)
treee114c46da6c1b98451a228b7559f5a6039c5df29 /spec/views
parent045c0f9554a99c80d0a127540da168e272a9f977 (diff)
downloadgitlab-ce-506159637da758f448818b834f8482238a9eb4eb.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/profiles/preferences/show.html.haml_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/views/profiles/preferences/show.html.haml_spec.rb b/spec/views/profiles/preferences/show.html.haml_spec.rb
index 52933c42621..e3eb822b045 100644
--- a/spec/views/profiles/preferences/show.html.haml_spec.rb
+++ b/spec/views/profiles/preferences/show.html.haml_spec.rb
@@ -12,6 +12,16 @@ describe 'profiles/preferences/show' do
allow(controller).to receive(:current_user).and_return(user)
end
+ context 'behavior' do
+ before do
+ render
+ end
+
+ it 'has option for Render whitespace characters in the Web IDE' do
+ expect(rendered).to have_unchecked_field('Render whitespace characters in the Web IDE')
+ end
+ end
+
context 'sourcegraph' do
def have_sourcegraph_field(*args)
have_field('user_sourcegraph_enabled', *args)