# Copyright (C) 2018 all contributors # License: GPL-3.0+ # frozen_string_literal: true require './test/helper' require 'dtas' require 'yaml' class TestEncoding < Testcase def test_encoding data = < --- comments: ARTIST: !binary |- RW5yaXF1ZSBSb2Ryw61ndWV6 EOD hash = YAML.load(data) artist = DTAS.try_enc(hash['comments']['ARTIST'], Encoding::UTF_8) assert_equal 'Enrique Rodríguez', artist end end