diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-02-23 22:21:41 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-02-23 22:21:41 +0100 |
commit | ff8a988bc749278b3b49db50f5da01d4d996f340 (patch) | |
tree | ab2f2bccbbb78868d3e260ab834c44d8349861d7 /test/test_ecore_pipe.rb | |
parent | e417bd57d7c213f2a50a94ec8690ae76c7f0ebba (diff) | |
download | ffi-efl-ff8a988bc749278b3b49db50f5da01d4d996f340.zip ffi-efl-ff8a988bc749278b3b49db50f5da01d4d996f340.tar.gz |
add missing 'delete,request' smart callback in some tests
Diffstat (limited to 'test/test_ecore_pipe.rb')
-rw-r--r-- | test/test_ecore_pipe.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_ecore_pipe.rb b/test/test_ecore_pipe.rb index e2786b3..93d83c6 100644 --- a/test/test_ecore_pipe.rb +++ b/test/test_ecore_pipe.rb @@ -14,6 +14,7 @@ class MyWin < Elm::ElmWin def initialize super(nil, "Pipe test") do title_set "Hello, World!" + smart_callback_add("delete,request", ->(*_) { Elm.exit }, nil) resize 200, 100 show end |