summaryrefslogtreecommitdiffstats
path: root/spec/eet_spec.rb
diff options
context:
space:
mode:
authorLionel Orry <lionel.orry@gmail.com>2011-04-21 17:39:06 +0200
committerjeremyz <jeremy@asynk.ch>2011-04-26 08:25:52 +0200
commita04650c1d5d9faefa653bc4060974fd086985140 (patch)
tree0871d3eb07541995e6e13de443ab3d5cd3a758f5 /spec/eet_spec.rb
parent52957665ac4975bff06a82e4169e99a60524a6a4 (diff)
downloadffi-efl-a04650c1d5d9faefa653bc4060974fd086985140.zip
ffi-efl-a04650c1d5d9faefa653bc4060974fd086985140.tar.gz
Make specs work with ruby18.
The included Efl module in the 'describe' scope was not visible in the tested context. Aliasing the module Efl::Xxx to Xxx seems to workaround this.
Diffstat (limited to 'spec/eet_spec.rb')
-rw-r--r--spec/eet_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/eet_spec.rb b/spec/eet_spec.rb
index 6ce5813..188f976 100644
--- a/spec/eet_spec.rb
+++ b/spec/eet_spec.rb
@@ -5,7 +5,7 @@ require 'efl/eet'
#
describe Efl::Eet do
#
- include Efl
+ before(:all) { Eet = Efl::Eet }
#
FP = '/tmp/_eet.cfg'
#