summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/template/gitignore_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/template/gitignore_spec.rb')
-rw-r--r--spec/lib/gitlab/template/gitignore_spec.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/spec/lib/gitlab/template/gitignore_spec.rb b/spec/lib/gitlab/template/gitignore_spec.rb
deleted file mode 100644
index bc0ec9325cc..00000000000
--- a/spec/lib/gitlab/template/gitignore_spec.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-require 'spec_helper'
-
-describe Gitlab::Template::Gitignore do
- subject { described_class }
-
- describe '.all' do
- it 'strips the gitignore suffix' do
- expect(subject.all.first.name).not_to end_with('.gitignore')
- end
-
- it 'combines the globals and rest' do
- all = subject.all.map(&:name)
-
- expect(all).to include('Vim')
- expect(all).to include('Ruby')
- end
- end
-
- describe '.find' do
- it 'returns nil if the file does not exist' do
- expect(subject.find('mepmep-yadida')).to be nil
- end
-
- it 'returns the Gitignore object of a valid file' do
- ruby = subject.find('Ruby')
-
- expect(ruby).to be_a Gitlab::Template::Gitignore
- expect(ruby.name).to eq('Ruby')
- end
- end
-
- describe '#content' do
- it 'loads the full file' do
- gitignore = subject.new(Rails.root.join('vendor/gitignore/Ruby.gitignore'))
-
- expect(gitignore.name).to eq 'Ruby'
- expect(gitignore.content).to start_with('*.gem')
- end
- end
-end