Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
ruby-2.6
/
usr
/
lib
/
ruby
/
gems
/
2.6.0
/
gems
/
test-unit-3.2.9
/
lib
/
test
/
unit
/
//opt/ruby-2.6/usr/lib/ruby/gems/2.6.0/gems/test-unit-3.2.9/lib/test/unit/attribute-matcher.rb
module Test module Unit class AttributeMatcher def initialize(test) @test = test end def match?(expression) matched = instance_eval(expression) if matched.nil? false else matched end end def method_missing(name, *args) if args.empty? @test[name] else super end end end end end