summaryrefslogtreecommitdiff
path: root/spec/models/commit_spec.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-01 16:56:25 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-01 16:56:25 +0300
commit541d89941014137762dff696c83b3357eba8efeb (patch)
tree8d94e6baced612248531b94ce747fe8b7d76e4e5 /spec/models/commit_spec.rb
parent49b024f5f5b88d406b895f050943db1e75adfa2a (diff)
downloadgitlab-ce-541d89941014137762dff696c83b3357eba8efeb.tar.gz
Project.repository should never be nil so you can call repository.exists? or repository.empty?
Also specify separate project factory for project with filled repo
Diffstat (limited to 'spec/models/commit_spec.rb')
-rw-r--r--spec/models/commit_spec.rb41
1 files changed, 19 insertions, 22 deletions
diff --git a/spec/models/commit_spec.rb b/spec/models/commit_spec.rb
index 7b063d2a81f..7713a33da07 100644
--- a/spec/models/commit_spec.rb
+++ b/spec/models/commit_spec.rb
@@ -3,35 +3,32 @@ require 'spec_helper'
describe Commit do
let(:commit) { create(:project).repository.commit }
- describe CommitDecorator do
- let(:decorator) { CommitDecorator.new(commit) }
- describe '#title' do
- it "returns no_commit_message when safe_message is blank" do
- decorator.stub(:safe_message).and_return('')
- decorator.title.should == "--no commit message"
- end
+ 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
- it "truncates a message without a newline at 70 characters" do
- message = commit.safe_message * 10
+ it "truncates a message without a newline at 70 characters" do
+ message = commit.safe_message * 10
- decorator.stub(:safe_message).and_return(message)
- decorator.title.should == "#{message[0..69]}&hellip;"
- end
+ commit.stub(:safe_message).and_return(message)
+ commit.title.should == "#{message[0..69]}&hellip;"
+ end
- it "truncates a message with a newline before 80 characters at the newline" do
- message = commit.safe_message.split(" ").first
+ it "truncates a message with a newline before 80 characters at the newline" do
+ message = commit.safe_message.split(" ").first
- decorator.stub(:safe_message).and_return(message + "\n" + message)
- decorator.title.should == message
- end
+ commit.stub(:safe_message).and_return(message + "\n" + message)
+ commit.title.should == message
+ end
- it "truncates a message with a newline after 80 characters at 70 characters" do
- message = (commit.safe_message * 10) + "\n"
+ it "truncates a message with a newline after 80 characters at 70 characters" do
+ message = (commit.safe_message * 10) + "\n"
- decorator.stub(:safe_message).and_return(message)
- decorator.title.should == "#{message[0..69]}&hellip;"
- end
+ commit.stub(:safe_message).and_return(message)
+ commit.title.should == "#{message[0..69]}&hellip;"
end
end