Sha256: 57b48521c9f9dbfb905811a3423755839e4a80398a14b76c9db995d578c82d6d
Contents?: true
Size: 1.63 KB
Versions: 154
Compression:
Stored size: 1.63 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 TestGtkRadioAction < Test::Unit::TestCase include GtkTestUtils sub_test_case(".new") do test("no options") do action = Gtk::RadioAction.new("choose-one", 1) assert_equal(["choose-one", 1], [action.name, action.value]) end test(":label") do action = Gtk::RadioAction.new("choose-one", 1, :label => "Choose one") assert_equal("Choose one", action.label) end test(":tooltip") do action = Gtk::RadioAction.new("choose-one", 1, :tooltip => "Choose one by this action") assert_equal("Choose one by this action", action.tooltip) end test(":stock_id") do action = Gtk::RadioAction.new("add-one", 1, :stock_id => "gtk-add") assert_equal("gtk-add", action.stock_id) end end end
Version data entries
154 entries across 146 versions & 2 rubygems