summaryrefslogtreecommitdiff
path: root/spec/names_helper_spec.rb
blob: f2a95e583816d2c1e127b997b74e99907b47f624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'spec_helper'
require 'names_helper'

describe NamesHelper do
  include NamesHelper

  describe :extract_ref_name do
    it { extract_ref_name('refs/heads/awesome-feature').should == 'awesome-feature' }
    it { extract_ref_name('refs/tags/v2.2.1').should == 'v2.2.1' }
    it { extract_ref_name('refs/tags/releases/v2.2.1').should == 'releases/v2.2.1' }
  end
end