# File test/test_inifile.rb, line 234
  def test_sections
    expected = [
      'section_one', 'section_two', 'section three',
      'section_four', 'section_five'
    ].sort

    assert_equal expected, @ini_file.sections.sort

    ini_file = ::IniFile.new 'temp.ini'
    assert_equal [], ini_file.sections
  end