diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-08-21 12:50:39 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-08-21 12:50:39 +0200 |
commit | 9b880211b0b1776972be0a80b676ca968cedc5a3 (patch) | |
tree | 1535152bc906621c5c781b909a58fc7a2837a3da /spec | |
parent | 0bc4b0d50369c493d5f994bf463931554ebb3c7f (diff) | |
download | ffi-efl-9b880211b0b1776972be0a80b676ca968cedc5a3.zip ffi-efl-9b880211b0b1776972be0a80b676ca968cedc5a3.tar.gz |
elementary: add a load of classes
Diffstat (limited to 'spec')
-rw-r--r-- | spec/elm_spec.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/spec/elm_spec.rb b/spec/elm_spec.rb index abe4589..2745d20 100644 --- a/spec/elm_spec.rb +++ b/spec/elm_spec.rb @@ -187,15 +187,12 @@ describe "Efl::Elm #{Efl::Elm.version.full}" do @iwin.activate @iwin.content_set o1 @iwin.content.should == o1.to_ptr - @iwin.content?.should == o1.to_ptr @iwin.content_get.should === o1.to_ptr @iwin.content= o2 @iwin.content.should === o2.to_ptr - @iwin.content?.should === o2.to_ptr @iwin.content_get.should === o2.to_ptr @iwin.content_unset @iwin.content.should == FFI::Pointer::NULL - @iwin.content?.should == FFI::Pointer::NULL @iwin.content_get.should == FFI::Pointer::NULL o1.free o2.free |