Sha256: 349efb9397878d6bb14f2edaca8bb7fd3dabb1390ccd3f1409c60491c1af7118
Contents?: true
Size: 311 Bytes
Versions: 172
Compression:
Stored size: 311 Bytes
Contents
class TestGtkAboutDialog < Test::Unit::TestCase include GtkTestUtils def setup @dialog = Gtk::AboutDialog.new end def test_program_name assert_equal(File.basename($0), @dialog.program_name) @dialog.program_name = "my-program" assert_equal("my-program", @dialog.program_name) end end
Version data entries
172 entries across 164 versions & 2 rubygems