summaryrefslogtreecommitdiff
path: root/spec/helpers/git_helper_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/git_helper_spec.rb')
-rw-r--r--spec/helpers/git_helper_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/helpers/git_helper_spec.rb b/spec/helpers/git_helper_spec.rb
new file mode 100644
index 00000000000..9b1ef1e05a2
--- /dev/null
+++ b/spec/helpers/git_helper_spec.rb
@@ -0,0 +1,9 @@
+require 'spec_helper'
+
+describe GitHelper do
+ describe '#short_sha' do
+ let(:short_sha) { helper.short_sha('d4e043f6c20749a3ab3f4b8e23f2a8979f4b9100') }
+
+ it { expect(short_sha).to eq('d4e043f6') }
+ end
+end