Sha256: 946caabd1178bc6b55cfe63c7f02a36ff1c5570731b895320d81741555a50af7
Contents?: true
Size: 811 Bytes
Versions: 83
Compression:
Stored size: 811 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes' describe "Kernel.global_variables" do it "is a private method" do Kernel.should have_private_instance_method(:global_variables) end # XXX eval is not supported # it "finds subset starting with std" do # global_variables.grep(/std/).should include("$stderr", "$stdin", "$stdout") # a = global_variables.size # global_variables.include?("$foolish_global_var").should == false # eval("$foolish_global_var = 1") # global_variables.size.should == a+1 # global_variables.should include("$foolish_global_var") # end end describe "Kernel#global_variables" do it "needs to be reviewed for spec completeness" end
Version data entries
83 entries across 83 versions & 1 rubygems