diff --git a/app/models/post.rb b/app/models/post.rb
index 6b0692e47c8..e36ec68fca4 100644
--- a/app/models/post.rb
+++ b/app/models/post.rb
@@ -111,7 +111,7 @@ class Post < ActiveRecord::Base
end
def self.white_listed_image_classes
- @white_listed_image_classes ||= ['avatar', 'favicon', 'thumbnail']
+ @white_listed_image_classes ||= ['avatar', 'favicon', 'thumbnail', 'emoji']
end
def post_analyzer
diff --git a/spec/models/post_spec.rb b/spec/models/post_spec.rb
index c7e259d0fa6..cab31474a1b 100644
--- a/spec/models/post_spec.rb
+++ b/spec/models/post_spec.rb
@@ -125,6 +125,7 @@ describe Post do
let(:post_with_favicon) { post_with_body('
', newuser) }
let(:post_with_thumbnail) { post_with_body('
', newuser) }
let(:post_with_two_classy_images) { post_with_body("
", newuser) }
+ let(:post_with_emojis) { post_with_body("
", newuser) }
it "returns 0 images for an empty post" do
Fabricate.build(:post).image_count.should == 0
@@ -150,6 +151,10 @@ describe Post do
post_with_thumbnail.image_count.should == 0
end
+ it "doesn't count emojies as images" do
+ post_with_emojis.image_count.should == 0
+ end
+
it "doesn't count whitelisted images" do
Post.stubs(:white_listed_image_classes).returns(["classy"])
post_with_two_classy_images.image_count.should == 0
@@ -166,6 +171,10 @@ describe Post do
post_one_image.should be_valid
end
+ it "allows a new user to post emojies" do
+ post_with_emojis.should be_valid
+ end
+
it "doesn't allow more than the maximum" do
post_two_images.should_not be_valid
end