Sha256: afba912a6e0ce89152305c7f70c25ef17518891bbd9968c0171218fcfc41556e
Contents?: true
Size: 404 Bytes
Versions: 21
Compression:
Stored size: 404 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. require_relative './lib/wxapp_runner' class DialogTests < Test::Unit::TestCase class TestDialog < Wx::Dialog def initialize super() end end def test_dialog_inheritance dlg = TestDialog.new assert_kind_of(Wx::Dialog, dlg) assert_kind_of(Wx::Window, dlg) end end
Version data entries
21 entries across 21 versions & 1 rubygems