summaryrefslogtreecommitdiffstats
path: root/spec/elm_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/elm_spec.rb')
-rw-r--r--spec/elm_spec.rb3
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