community_test.rb
1.5 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require File.dirname(__FILE__) + '/../test_helper'
class CommunityTest < Test::Unit::TestCase
should 'inherit from Profile' do
assert_kind_of Profile, Community.new
end
should 'convert name into identifier' do
c = Community.new(:name =>'My shiny new Community')
assert_equal 'My shiny new Community', c.name
assert_equal 'my-shiny-new-community', c.identifier
end
should 'have a description attribute' do
c = Community.new
c.description = 'the description of the community'
assert_equal 'the description of the community', c.description
end
should 'create default set of blocks' do
c = Community.create!(:name => 'my new community')
assert c.boxes[0].blocks.map(&:class).include?(MainBlock)
assert c.boxes[1].blocks.map(&:class).include?(ProfileInfoBlock)
assert c.boxes[1].blocks.map(&:class).include?(RecentDocumentsBlock)
assert c.boxes[2].blocks.map(&:class).include?(MembersBlock)
assert c.boxes[2].blocks.map(&:class).include?(TagsBlock)
assert_equal 5, c.blocks.size
end
should 'get a default home page and RSS feed' do
community = Community.create!(:name => 'my new community')
assert_kind_of Article, community.home_page
assert_kind_of RssFeed, community.articles.find_by_path('feed')
end
should 'save info' do
community = Community.create!(:name => 'my new community')
community.info = {:contact_person => 'my contact'}
community.save!
assert_equal 'my contact', community.info.contact_person
end
end