51 52 53 54 55 56 57 58 59
# File 'lib/vex/boot/string.rb', line 51 def test_constantize assert_equal String, "String".constantize assert_raise(NameError) { "I::Dont::Know::This".constantize } assert_raise(ArgumentError) { "".constantize } end