# File lib/Borges/Test/HtmlTest.rb, line 11
  def initialize
    @message = 'Hello world!!'

    @boolean_list = {}
    [:a, :b, :c, :d].map do |k|
      @boolean_list[k] = rand > 0.5
    end

    @number = rand(10)
  end