# File test/test_inifile.rb, line 17
  def setup
    @ini_file = ::IniFile.new 'test/data/good.ini'
    @contents = [
      ['section_one', 'one', '1'],
      ['section_one', 'two', '2'],
      ['section_two', 'three', '3'],
      ['section three', 'four', '4'],
      ['section three', 'five', '5'],
      ['section three', 'six', '6'],
      ['section_five', 'seven and eight', '7 & 8']
    ].sort
  end