commmunity_block_test.rb 310 Bytes
require File.dirname(__FILE__) + '/../test_helper'

class CommunityBlockTest < ActiveSupport::TestCase

  should "display community block" do
    block = CommunityBlock.new
    self.expects(:render).with(:file => 'community_block', :locals => { :block => block })
    instance_eval(& block.content)
  end

end