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.
9 lines
221 B
Ruby
9 lines
221 B
Ruby
class TestGtkImage < Test::Unit::TestCase
|
|||
include GtkTestUtils
|
|||
|
|||
def test_stock
|
|||
image = Gtk::Image.new(Gtk::Stock::GO_FORWARD, Gtk::IconSize::DIALOG)
|
|||
assert_equal(Gtk::Stock::GO_FORWARD, image.stock)
|
|||
end
|
|||
end
|