This repository has been archived on 2021-09-15 . You can view files and clone it, but cannot push or open issues or pull requests.
15 lines
403 B
Ruby
15 lines
403 B
Ruby
class TestGtkUnixPrint < Test::Unit::TestCase
|
|||
def test_classes
|
|||
if GLib.os_unix?
|
|||
assertion = :assert_const_defined
|
|||
else
|
|||
assertion = :assert_not_const_defined
|
|||
end
|
|||
send(assertion, Gtk, :PageSetupUnixDialog)
|
|||
send(assertion, Gtk, :Printer)
|
|||
send(assertion, Gtk, :PrintCapabilities)
|
|||
send(assertion, Gtk, :PrintJob)
|
|||
send(assertion, Gtk, :PrintUnixDialog)
|
|||
end
|
|||
end
|