From 6571ec2fa927ab17d27e3f216646c5087dbbc631 Mon Sep 17 00:00:00 2001 From: robhogg <robhogg68@googlemail.com> Date: Mon, 2 Jan 2012 21:14:17 +0000 Subject: [PATCH] Added test for nsfw? --- spec/models/status_message_spec.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/spec/models/status_message_spec.rb b/spec/models/status_message_spec.rb index 8202c021bb..300d8b858a 100644 --- a/spec/models/status_message_spec.rb +++ b/spec/models/status_message_spec.rb @@ -226,6 +226,18 @@ STR end end + describe "#nsfw?" do + it 'returns MatchObject (true) if the post contains #nsfw (however capitalised)' do + status = Factory(:status_message, :text => "This message is #nSFw") + status.nsfw?.should be_true + end + + it 'returns nil (false) if the post does not contain #nsfw' do + status = Factory(:status_message, :text => "This message is #sFW") + status.nsfw?.should be_false + end + end + describe "#notify_person" do it 'notifies the person mentioned' do Notification.should_receive(:notify).with(alice, anything, anything) -- GitLab