Remove dead Event#new_branch? method

This commit is contained in:
Ciro Santilli 2014-11-03 20:17:02 +01:00
parent 1b1403804e
commit c49cb40f65
2 changed files with 0 additions and 5 deletions

View File

@ -186,10 +186,6 @@ class Event < ActiveRecord::Base
data[:ref]["refs/heads"]
end
def new_branch?
commit_from =~ /^00000/
end
def new_ref?
commit_from =~ /^00000/
end

View File

@ -60,7 +60,6 @@ describe Event do
it { @event.push?.should be_true }
it { @event.proper?.should be_true }
it { @event.new_branch?.should be_true }
it { @event.tag?.should be_false }
it { @event.branch_name.should == "master" }
it { @event.author.should == @user }