Sha256: 22bfe35d6d289a9b42b83db0120e1b005927e03796bdfb9ae18f36bafd1a3e07
Contents?: true
Size: 863 Bytes
Versions: 1
Compression:
Stored size: 863 Bytes
Contents
require File.expand_path(File.dirname(__FILE__))+'/../test_helper' class LikeableTest < Test::Unit::TestCase context "Likeable" do setup do @liker = ImALiker.new @likeable = ImALikeable.create end context "#is_likeable" do should "return true" do assert_true @likeable.is_likeable? end end context "#liked_by?" do should "not accept non-likers" do assert_raise(ArgumentError) { @likeable.liked_by?(:foo) } end should "call $Like.likes?" do $Like.expects(:likes?).with(@liker, @likeable).once @likeable.liked_by?(@liker) end end context "#likers" do should "call $Like.likers" do $Like.expects(:likers).with(@likeable, @liker.class, { :foo => :bar }) @likeable.likers(@liker.class, { :foo => :bar }) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
socialization-0.5.0.beta | test/victims/likeable_test.rb |