diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-12-20 19:54:13 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-12-20 19:54:13 +0100 |
commit | e9c14918e51828dfbfa2879d5a04f74d08fae290 (patch) | |
tree | d9b89209f5597fa45ed161a22ed69213da70eb8c /spec | |
parent | 61d09a7b15ef9ae2e23359f1afb87b0adbda4dd4 (diff) | |
parent | 8d3ed21f2389a3a68dac56c077bc85591bed8b0b (diff) | |
download | gitlab-ce-e9c14918e51828dfbfa2879d5a04f74d08fae290.tar.gz |
Merge branch 'zj-mattermost-slash-config' of gitlab.com:gitlab-org/gitlab-ce into zj-mattermost-slash-config
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/projects/services/mattermost_slash_command_spec.rb | 40 |
1 files changed, 5 insertions, 35 deletions
diff --git a/spec/features/projects/services/mattermost_slash_command_spec.rb b/spec/features/projects/services/mattermost_slash_command_spec.rb index 4c08d1e6e65..521eedeae9e 100644 --- a/spec/features/projects/services/mattermost_slash_command_spec.rb +++ b/spec/features/projects/services/mattermost_slash_command_spec.rb @@ -32,49 +32,19 @@ feature 'Setup Mattermost slash commands', feature: true do end describe 'mattermost service is enabled' do - let(:info) { find('.services-installation-info') } - before do - Gitlab.config.mattermost.enabled = true - end - - it 'shows the correct mattermost url' do - expect(page).to have_content Gitlab.config.mattermost.host - end - - describe 'mattermost service is active' do - before do - service.active = true - end - - it 'shows that mattermost is active' do - expect(info).to have_content 'Installed' - expect(info).not_to have_content 'Not installed' - end - - it 'shows the edit mattermost button' do - expect(info).to have_button 'Edit Mattermost' - end + allow(Gitlab.config.mattermost).to receive(:enabled).and_return(true) end - describe 'mattermost service is not active' do - before do - service.active = false - end - - it 'shows that mattermost is not active' do - expect(info).to have_content 'Not installed' - end - - it 'shows the add to mattermost button' do - expect(info).to have_button 'Add to Mattermost' - end + it 'shows the add to mattermost button' do + expect(page).to have_link 'Add to Mattermost' end end + describe 'mattermost service is not enabled' do before do - Gitlab.config.mattermost.enabled = false + allow(Gitlab.config.mattermost).to receive(:enabled).and_return(false) end it 'shows the correct trigger url' do |