Sha256: c239220a615487ed19b8e9d591b68f45949c67d851e4b2e98af6b7555ea1a6f6

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

# Copyright (C) 2017-2019  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

class TestAttrList < Test::Unit::TestCase
  include PangoTestUtils

  def setup
    @attrs = Pango::AttrList.new
  end

  def test_insert
    attribute = Pango::AttrLanguage.new(Pango::Language.default)
    @attrs.insert(attribute)
    assert_equal([
                   [attribute.value.to_s],
                   [],
                 ],
                 @attrs.collect {|iter| iter.attrs.collect {|a| a.value.to_s}})
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pango-3.4.3 test/test-attr-list.rb
pango-3.4.2 test/test-attr-list.rb
pango-3.4.1 test/test-attr-list.rb
pango-3.4.0 test/test-attr-list.rb
pango-3.3.9 test/test-attr-list.rb
pango-3.3.8 test/test-attr-list.rb
pango-3.3.7 test/test-attr-list.rb