summaryrefslogtreecommitdiff
path: root/test/ruby/test_rubyvm.rb
blob: 613cfe2161184e13082acdd3de23c4c224524331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'test/unit'

class TestRubyVM < Test::Unit::TestCase
  def test_stat
    assert_kind_of Hash, RubyVM.stat
    assert_kind_of Fixnum, RubyVM.stat[:global_method_state]

    RubyVM.stat(stat = {})
    assert_not_empty stat
    assert_equal stat[:global_method_state], RubyVM.stat(:global_method_state)
  end

  def test_stat_unknown
    assert_raise(ArgumentError){ RubyVM.stat(:unknown) }
  end
end