/vendor/gems/facets-2.4.5/test/core/binding/test_defined.rb

https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 18 lines · 13 code · 5 blank · 0 comment · 0 complexity · 01e2fe2e6225c383c86023d21fc08a82 MD5 · raw file

  1. require 'facets/binding/defined'
  2. require 'test/unit'
  3. class TC_Binding_Defined < Test::Unit::TestCase
  4. def setup
  5. a = 1
  6. b = 2
  7. x = "hello"
  8. @bind = binding
  9. end
  10. def test_defined?
  11. assert( @bind.defined?("x") )
  12. end
  13. end