Commit 5759bfe0 authored by Sean McGivern's avatar Sean McGivern

Make it clearer when Commit#description returns no_commit_message

parent e3f13c9e
......@@ -193,13 +193,10 @@ class Commit
# otherwise returns commit message without first line
def description
return safe_message if full_title.length >= 100
return no_commit_message if safe_message.blank?
if safe_message.blank?
no_commit_message
else
safe_message.split("\n", 2)[1].try(:chomp)
end
end
def description?
description.present?
......
......@@ -225,9 +225,10 @@ eos
end
describe 'description' do
it "returns no_commit_message when safe_message is blank" do
allow(commit).to receive(:safe_message).and_return('')
expect(commit.description).to eq("--no commit message")
it 'returns no_commit_message when safe_message is blank' do
allow(commit).to receive(:safe_message).and_return(nil)
expect(commit.description).to eq('--no commit message')
end
it 'returns description of commit message if title less than 100 characters' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment