Sha256: 9b6b9f85c9fe8787795537053038327dae064761342695068604dc44b80564de

Contents?: true

Size: 1.49 KB

Versions: 1

Compression:

Stored size: 1.49 KB

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 "#likeable?" do
      should "return true" do
        assert_true @likeable.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

    context "#likers_relation" do
      should "call $Like.likers_relation" do
        $Like.expects(:likers_relation).with(@likeable, @liker.class, { :foo => :bar })
        @likeable.likers_relation(@liker.class, { :foo => :bar })
      end
    end

    context "deleting a likeable" do
      setup do
        @liker = ImALiker.create
        @liker.like!(@likeable)
      end

      should "remove like relationships" do
        Socialization.like_model.expects(:remove_likers).with(@likeable)
        @likeable.destroy
      end
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
socialization-0.5.0.beta4 test/victims/likeable_test.rb