This needs to be done for all plugins as well, but it's more complicated
there because several plugins have their own test_helper (which will
also load the core test_helper).
require_relative "../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