提交 c11d3c57 编写于 作者: R Robert Speicher

Remove param from CommitRange#to_s

上级 81a21e57
......@@ -67,12 +67,8 @@ class CommitRange
end
end
def to_s(short: true)
if short
"#{sha_from[0..7]}#{notation}#{sha_to[0..7]}"
else
"#{sha_from}#{notation}#{sha_to}"
end
def to_s
"#{sha_from[0..7]}#{notation}#{sha_to[0..7]}"
end
# Returns a String for use in a link's title attribute
......
......@@ -39,24 +39,12 @@ describe CommitRange do
end
describe '#to_s' do
context 'with short IDs' do
it 'is correct for three-dot syntax' do
expect(range.to_s).to eq "#{sha_from[0..7]}...#{sha_to[0..7]}"
end
it 'is correct for two-dot syntax' do
expect(range2.to_s).to eq "#{sha_from[0..7]}..#{sha_to[0..7]}"
end
it 'is correct for three-dot syntax' do
expect(range.to_s).to eq "#{sha_from[0..7]}...#{sha_to[0..7]}"
end
context 'with full IDs' do
it 'is correct for three-dot syntax' do
expect(range.to_s(short: false)).to eq "#{sha_from}...#{sha_to}"
end
it 'is correct for two-dot syntax' do
expect(range2.to_s(short: false)).to eq "#{sha_from}..#{sha_to}"
end
it 'is correct for two-dot syntax' do
expect(range2.to_s).to eq "#{sha_from[0..7]}..#{sha_to[0..7]}"
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册