summaryrefslogtreecommitdiffstats
path: root/spec/eet_spec.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-10-21 14:45:22 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-10-21 14:45:22 +0200
commitc0801dc60f8a998395a6300ca8a7cad5cf438bfa (patch)
tree4ea5c6a8bfd7c6fd3140a72575a03b3955d64be7 /spec/eet_spec.rb
parent1fdfd0dbf44195afcac78c752ca7918e4708b392 (diff)
downloadffi-efl-c0801dc60f8a998395a6300ca8a7cad5cf438bfa.zip
ffi-efl-c0801dc60f8a998395a6300ca8a7cad5cf438bfa.tar.gz
use strings instead of module within specs
Diffstat (limited to 'spec/eet_spec.rb')
-rw-r--r--spec/eet_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/eet_spec.rb b/spec/eet_spec.rb
index c12cbb9..9fbba1c 100644
--- a/spec/eet_spec.rb
+++ b/spec/eet_spec.rb
@@ -42,7 +42,7 @@ describe "Efl::Eet #{Efl::Eet.version.full}" do
Native.enum_type(:eet_file_mode)[:eet_file_mode_read_write].should == 2
end
#
- describe Efl::Eet::REetFile do
+ describe 'Efl::Eet::REetFile' do
#
it "should open and close" do
f = REetFile.open FP, Native.enum_type(:eet_file_mode)[:eet_file_mode_write]
@@ -83,7 +83,7 @@ describe "Efl::Eet #{Efl::Eet.version.full}" do
f = REetFile.open FP, :eet_file_mode_read_write
f.write 'configg', 'test key'
f.read('configg').should == 'test key'
-# f.close #leave it to FFI::AutoPointer
+ f.close
end
#
it "should write in block" do