summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/templates/templates_spec.rb
blob: 0dd74399a47540e5da22d971dd1c424c3e1f0e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

describe "CI YML Templates" do
  Gitlab::Template::GitlabCiYmlTemplate.all.each do |template|
    it "#{template.name} should be valid" do
      expect { Gitlab::Ci::YamlProcessor.new(template.content) }.not_to raise_error
    end
  end
end