PageRenderTime 32ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): GPL-3.0, GPL-2.0, IPL-1.0, AGPL-1.0, LGPL-3.0
  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