summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJonathon Reinhart <Jonathon.Reinhart@gmail.com>2017-11-29 23:20:26 -0500
committerJonathon Reinhart <Jonathon.Reinhart@gmail.com>2018-12-13 00:48:23 -0500
commit7a020bf2d00f4b53134498313aefe6374e17da5a (patch)
tree20d752581e0a3e100cd6910307f40a89e8d4e97a /spec
parent528960c801aed81a977e7ce58a9706b4ea32ab4a (diff)
downloadgitlab-shell-7a020bf2d00f4b53134498313aefe6374e17da5a.tar.gz
Remove unused lib/names_helper.rb
As of 7eb45672b7, NamesHelper is no longer used.
Diffstat (limited to 'spec')
-rw-r--r--spec/names_helper_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/names_helper_spec.rb b/spec/names_helper_spec.rb
deleted file mode 100644
index 6886cad..0000000
--- a/spec/names_helper_spec.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-require 'spec_helper'
-require 'names_helper'
-
-describe NamesHelper do
- include NamesHelper
-
- describe :extract_ref_name do
- it { expect(extract_ref_name('refs/heads/awesome-feature')).to eq('awesome-feature') }
- it { expect(extract_ref_name('refs/tags/v2.2.1')).to eq('v2.2.1') }
- it { expect(extract_ref_name('refs/tags/releases/v2.2.1')).to eq('releases/v2.2.1') }
- end
-end