diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 11:37:06 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 11:37:06 +0100 |
commit | 7603f4c0902bf5845c7e7654c3745f5519347c8b (patch) | |
tree | bd381bf3a7f04d2ee7ddd92111c35a03472c7ecf /spec/ecore_evas_spec.rb | |
parent | 8c013976d73850718e75bbc93a03f3f016fc3ae8 (diff) | |
download | ffi-efl-7603f4c0902bf5845c7e7654c3745f5519347c8b.zip ffi-efl-7603f4c0902bf5845c7e7654c3745f5519347c8b.tar.gz |
use instance_eval instead of yield self.
- simplify and highlights initialization code
- but shadows external scope variables
Diffstat (limited to 'spec/ecore_evas_spec.rb')
-rw-r--r-- | spec/ecore_evas_spec.rb | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/spec/ecore_evas_spec.rb b/spec/ecore_evas_spec.rb index 17ab9ea..859e282 100644 --- a/spec/ecore_evas_spec.rb +++ b/spec/ecore_evas_spec.rb @@ -52,16 +52,17 @@ describe 'Efl::EcoreEvas' do EcoreEvas.init.should == 2 end before(:each) do - @e = EcoreEvas::REcoreEvas.new :engine_name=>"software_x11", :x=>10, :y=>10, :w=>100, :h=>120 + @e = EcoreEvas::REcoreEvas.new :engine_name=>"software_x11", :x=>10, :y=>10, :w=>100, :h=>120 do + move 10, 10 + show + end @canvas = @e.evas - @bg = @canvas.object_rectangle_add { |o| - o.color = 100, 100, 255, 255 - o.size = @e.size - } - @bg.show + @bg = @canvas.object_rectangle_add do + color_set 100, 100, 255, 255 + show + end + @bg.size = @e.size @e.object_associate @bg, :ecore_evas_object_associate_base - @e.move 10, 10 - @e.show end after(:each) do @e.free |