login_block_test.rb 272 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 require File.dirname(__FILE__) + '/../test_helper' class LoginBlockTest < ActiveSupport::TestCase def setup @block = LoginBlock.new end attr_reader :block should 'describe itself' do assert_not_equal Block.description, LoginBlock.description end end