summaryrefslogtreecommitdiff
path: root/spec/ruby/language/safe_spec.rb
blob: 03ae96148efec403a76f589b671791b773536fad (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../spec_helper'

describe "The $SAFE variable" do
  it "$SAFE is a regular global variable" do
    $SAFE.should == nil
    $SAFE = 42
    $SAFE.should == 42
  ensure
    $SAFE = nil
  end
end