blob: 18e98085a0749bc35197915b9f2da512b5e295b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'test/unit'
require "-test-/struct"
class Bug::Struct::Test_Member < Test::Unit::TestCase
S = Bug::Struct.new(:a)
def test_member_get
s = S.new(1)
assert_equal(1, s.get(:a))
assert_raise_with_message(NameError, /is not a struct member/) {s.get(:b)}
EnvUtil.with_default_external(Encoding::UTF_8) do
assert_raise_with_message(NameError, /\u{3042}/) {s.get(:"\u{3042}")}
end
end
end
|