Commit 8822b603 authored by Albert Salim's avatar Albert Salim

Match ' and " in runner values test

parent 5fad87ba
...@@ -69,8 +69,8 @@ RSpec.describe Clusters::Applications::Runner do ...@@ -69,8 +69,8 @@ RSpec.describe Clusters::Applications::Runner do
expect(values).to include('privileged: true') expect(values).to include('privileged: true')
expect(values).to include('image: ubuntu:16.04') expect(values).to include('image: ubuntu:16.04')
expect(values).to include('resources') expect(values).to include('resources')
expect(values).to match(/runnerToken: '?#{Regexp.escape(ci_runner.token)}/) expect(values).to match(/runnerToken: ['"]?#{Regexp.escape(ci_runner.token)}/)
expect(values).to match(/gitlabUrl: '?#{Regexp.escape(Gitlab::Routing.url_helpers.root_url)}/) expect(values).to match(/gitlabUrl: ['"]?#{Regexp.escape(Gitlab::Routing.url_helpers.root_url)}/)
end end
context 'without a runner' do context 'without a runner' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment