Commit 3efbf92e authored by Katarzyna Kobierska's avatar Katarzyna Kobierska

Improve tests grammar

parent b13502ef
...@@ -2,7 +2,8 @@ require 'spec_helper' ...@@ -2,7 +2,8 @@ require 'spec_helper'
describe 'ci/lints/show' do describe 'ci/lints/show' do
let(:content) do let(:content) do
{ build_template: { {
build_template: {
script: './build.sh', script: './build.sh',
tags: ['dotnet'], tags: ['dotnet'],
only: ['test@dude/repo'], only: ['test@dude/repo'],
...@@ -11,16 +12,17 @@ describe 'ci/lints/show' do ...@@ -11,16 +12,17 @@ describe 'ci/lints/show' do
} }
} }
end end
let(:config_processor) { Ci::GitlabCiYamlProcessor.new(YAML.dump(content)) } let(:config_processor) { Ci::GitlabCiYamlProcessor.new(YAML.dump(content)) }
context 'when content is valid' do context 'when the content is valid' do
before do before do
assign(:status, true) assign(:status, true)
assign(:builds, config_processor.builds) assign(:builds, config_processor.builds)
assign(:stages, config_processor.stages) assign(:stages, config_processor.stages)
end end
it 'shows correct values' do it 'shows the correct values' do
render render
expect(rendered).to have_content('Tag list: dotnet') expect(rendered).to have_content('Tag list: dotnet')
......
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