Update Note#upvote? to support emoji voting

This commit is contained in:
Robert Speicher 2012-09-06 15:31:25 -04:00
parent 3a63f6f316
commit 2faa4bba40
2 changed files with 11 additions and 1 deletions

View file

@ -103,7 +103,7 @@ class Note < ActiveRecord::Base
# Returns true if this is an upvote note, # Returns true if this is an upvote note,
# otherwise false is returned # otherwise false is returned
def upvote? def upvote?
note =~ /^\+1/ ? true : false note.start_with?('+1') || note.start_with?(':+1:')
end end
end end
# == Schema Information # == Schema Information

View file

@ -35,6 +35,16 @@ describe Note do
note = Factory(:note, note: "-1 for this") note = Factory(:note, note: "-1 for this")
note.should_not be_upvote note.should_not be_upvote
end end
it "recognizes a +1 emoji as a vote" do
note = build(:note, note: ":+1: for this")
note.should be_upvote
end
it "recognizes a neutral emoji note" do
note = build(:note, note: "I would :+1: this, but I don't want to")
note.should_not be_upvote
end
end end
let(:project) { create(:project) } let(:project) { create(:project) }