Sha256: 7cd2dd2567591ce761b0a958334826c01cad5d8ae3e02f1241371af66d360d0c

Contents?: true

Size: 1.43 KB

Versions: 131

Compression:

Stored size: 1.43 KB

Contents

# Copyright (C) 2015  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 TestGtkBox < Test::Unit::TestCase
  include GtkTestUtils

  sub_test_case ".new" do
    sub_test_case "spacing" do
      def test_nil
        box = Gtk::Box.new(:vertical, nil)
        assert_equal(0, box.spacing)
      end
    end
  end

  test "set_child_packing" do
    box = Gtk::Box.new(:vertical)
    child = Gtk::EventBox.new
    box.add(child)
    box.set_child_packing(child,
                          :expand => false,
                          :fill   => true,
                          :padding => 100,
                          :pack_type => :end)
    assert_equal([false, true, 100, Gtk::PackType::END],
                 box.query_child_packing(child))
  end
end

Version data entries

131 entries across 123 versions & 2 rubygems

Version Path
gtk3-4.2.7 test/test-gtk-box.rb
gtk3-4.2.6 test/test-gtk-box.rb
gtk3-4.2.5 test/test-gtk-box.rb
gtk3-4.2.4 test/test-gtk-box.rb
gtk3-4.2.3 test/test-gtk-box.rb
gtk3-4.2.2 test/test-gtk-box.rb
gtk3-4.2.1 test/test-gtk-box.rb
gtk3-4.2.0 test/test-gtk-box.rb
gtk3-4.1.9 test/test-gtk-box.rb
gtk3-4.1.8 test/test-gtk-box.rb
gtk3-4.1.7 test/test-gtk-box.rb
gtk3-4.1.6 test/test-gtk-box.rb
gtk3-4.1.5 test/test-gtk-box.rb
gtk3-4.1.4 test/test-gtk-box.rb
gtk3-4.1.3 test/test-gtk-box.rb
gtk3-4.1.2 test/test-gtk-box.rb
gtk3-4.1.1 test/test-gtk-box.rb
gtk3-4.1.0 test/test-gtk-box.rb
gtk3-4.0.9 test/test-gtk-box.rb
gtk3-4.0.8 test/test-gtk-box.rb