cirandas.net

ref: master

test/unit/fans_block_test.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require_relative "../test_helper"

class FansBlockTest < ActiveSupport::TestCase

  should 'inherit from ProfileListBlock' do
    assert_kind_of ProfileListBlock, FansBlock.new
  end

  should 'declare its default title' do
    FansBlock.any_instance.stubs(:profile_count).returns(0)
    assert_not_equal ProfileListBlock.new.default_title, FansBlock.new.default_title
  end

  should 'describe itself' do
    assert_not_equal ProfileListBlock.description, FansBlock.description
  end

  should 'list owner fans' do

    block = FansBlock.new

    owner = mock
    block.expects(:owner).returns(owner)

    list = []
    owner.expects(:fans).returns(list)

    assert_same list, block.profiles
  end

end