summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/slash_commands/deploy_spec.rb
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2018-02-27 10:20:09 +0000
committerKamil Trzciński <ayufan@ayufan.eu>2018-02-27 10:20:09 +0000
commit60503057bcf357bef82e3e61072d2a2646f62279 (patch)
tree48e234ba8450dd8786c42bcfa157987a5ec0b567 /spec/lib/gitlab/slash_commands/deploy_spec.rb
parenta4885b8f37602c399efff028b0a733ef80fbe7ab (diff)
parent57719d34d3fcc15f39354b0e9dc1da41bbe5d1a8 (diff)
downloadgitlab-ce-60503057bcf357bef82e3e61072d2a2646f62279.tar.gz
Merge branch 'slash-commands-changes-for-chatops' into 'master'
Expose ChatName objects to slash commands See merge request gitlab-org/gitlab-ce!17295
Diffstat (limited to 'spec/lib/gitlab/slash_commands/deploy_spec.rb')
-rw-r--r--spec/lib/gitlab/slash_commands/deploy_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/lib/gitlab/slash_commands/deploy_spec.rb b/spec/lib/gitlab/slash_commands/deploy_spec.rb
index 74b5ef4bb26..0d57334aa4c 100644
--- a/spec/lib/gitlab/slash_commands/deploy_spec.rb
+++ b/spec/lib/gitlab/slash_commands/deploy_spec.rb
@@ -4,6 +4,7 @@ describe Gitlab::SlashCommands::Deploy do
describe '#execute' do
let(:project) { create(:project) }
let(:user) { create(:user) }
+ let(:chat_name) { double(:chat_name, user: user) }
let(:regex_match) { described_class.match('deploy staging to production') }
before do
@@ -16,7 +17,7 @@ describe Gitlab::SlashCommands::Deploy do
end
subject do
- described_class.new(project, user).execute(regex_match)
+ described_class.new(project, chat_name).execute(regex_match)
end
context 'if no environment is defined' do