summaryrefslogtreecommitdiff
path: root/spec/models/commit_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/commit_spec.rb')
-rw-r--r--spec/models/commit_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/models/commit_spec.rb b/spec/models/commit_spec.rb
index af53df9..28cd0ef 100644
--- a/spec/models/commit_spec.rb
+++ b/spec/models/commit_spec.rb
@@ -54,20 +54,6 @@ describe Commit do
end
end
- describe :ci_skip? do
- let(:project) { FactoryGirl.create(:project) }
- let(:commit) { FactoryGirl.create(:commit, project: project) }
-
- it 'true if commit message contains [ci skip]' do
- commit.stub(:git_commit_message) { 'Small typo [ci skip]' }
- commit.ci_skip?.should == true
- end
-
- it 'false if commit message does not contain [ci skip]' do
- commit.ci_skip?.should == false
- end
- end
-
describe :project_recipients do
context 'always sending notification' do