Author: Tobias Grimm <etobi@debian.org>
Description: Ruby 1.9.2 allows class variable access again.
Index: librspec-ruby-1.3.0/spec/spec/example/example_group_spec.rb
===================================================================
--- librspec-ruby-1.3.0.orig/spec/spec/example/example_group_spec.rb	2010-08-17 00:25:00.000000000 +0200
+++ librspec-ruby-1.3.0/spec/spec/example/example_group_spec.rb	2010-08-17 00:24:51.000000000 +0200
@@ -24,11 +24,9 @@
         end
       end
       
-      it "can NOT access class variables in examples in Ruby 1.9" do
+      it "can access class variables in examples in Ruby 1.9" do
         with_ruby 1.9 do
-          lambda do
-            @@class_variable.should == "a class variable"
-          end.should raise_error(NameError)
+          @@class_variable.should == "a class variable"
         end
       end
       
