summaryrefslogtreecommitdiff
path: root/test/ruby/test_variable.rb
blob: c4a17b7cafbd4e37bd07f3327c2686c1cd6bd60a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'test/unit'

$KCODE = 'none'

class TestVariable < Test::Unit::TestCase
  class Gods
    @@rule = "Uranus"
    def ruler0
      @@rule
    end

    def self.ruler1		# <= per method definition style
      @@rule
    end		   
    class << self			# <= multiple method definition style
      def ruler2
	@@rule
      end
    end
  end

  module Olympians
    @@rule ="Zeus"
    def ruler3
      @@rule
    end
  end

  class Titans < Gods
    @@rule = "Cronus"
    include Olympians           	# OK to cause warning (intentional)
  end

  def test_variable
    assert($$.instance_of?(Fixnum))
    
    # read-only variable
    begin
      $$ = 5
      assert false
    rescue NameError
      assert true
    end
    
    foobar = "foobar"
    $_ = foobar
    assert($_ == foobar)

    assert(Gods.new.ruler0 == "Cronus")
    assert(Gods.ruler1 == "Cronus")
    assert(Gods.ruler2 == "Cronus")
    assert(Titans.ruler1 == "Cronus")
    assert(Titans.ruler2 == "Cronus")
    atlas = Titans.new
    assert(atlas.ruler0 == "Cronus")
    assert(atlas.ruler3 == "Zeus")
  end
end