mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
10 lines
181 B
Ruby
10 lines
181 B
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::Git do
|
|
describe "BLANK_SHA" do
|
|
it "is a string of 40 zero's" do
|
|
expect(Gitlab::Git::BLANK_SHA).to eq('0' * 40)
|
|
end
|
|
end
|
|
end
|