commit_spec.rb 1.5 KB
Newer Older
R
Robert Speicher 已提交
1 2 3
require 'spec_helper'

describe Commit do
4
  let(:commit) { create(:project_with_code).repository.commit }
R
Robert Speicher 已提交
5

6 7 8 9 10
  describe '#title' do
    it "returns no_commit_message when safe_message is blank" do
      commit.stub(:safe_message).and_return('')
      commit.title.should == "--no commit message"
    end
R
Robert Speicher 已提交
11

12 13
    it "truncates a message without a newline at 70 characters" do
      message = commit.safe_message * 10
R
Robert Speicher 已提交
14

15 16 17
      commit.stub(:safe_message).and_return(message)
      commit.title.should == "#{message[0..69]}…"
    end
R
Robert Speicher 已提交
18

19 20
    it "truncates a message with a newline before 80 characters at the newline" do
      message = commit.safe_message.split(" ").first
R
Robert Speicher 已提交
21

22 23 24
      commit.stub(:safe_message).and_return(message + "\n" + message)
      commit.title.should == message
    end
R
Robert Speicher 已提交
25

26 27
    it "truncates a message with a newline after 80 characters at 70 characters" do
      message = (commit.safe_message * 10) + "\n"
R
Robert Speicher 已提交
28

29 30
      commit.stub(:safe_message).and_return(message)
      commit.title.should == "#{message[0..69]}…"
R
Robert Speicher 已提交
31 32
    end
  end
33 34 35 36 37 38 39

  describe "delegation" do
    subject { commit }

    it { should respond_to(:message) }
    it { should respond_to(:authored_date) }
    it { should respond_to(:committed_date) }
40 41
    it { should respond_to(:committer_email) }
    it { should respond_to(:author_email) }
42 43 44 45 46 47 48
    it { should respond_to(:parents) }
    it { should respond_to(:date) }
    it { should respond_to(:diffs) }
    it { should respond_to(:tree) }
    it { should respond_to(:id) }
    it { should respond_to(:to_patch) }
  end
R
Robert Speicher 已提交
49
end