/vendor/gems/facets-2.4.5/test/core/binding/test_local_variables.rb
https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 18 lines · 13 code · 5 blank · 0 comment · 0 complexity · b042e9557b8204f6185af33e78e1a15c MD5 · raw file
- require 'facets/binding/local_variables'
- require 'test/unit'
- class TC_Binding_Local_Variables < Test::Unit::TestCase
- def setup
- a = 1
- b = 2
- x = "hello"
- @bind = binding
- end
- def test_local_variables
- assert_equal( ["a","b","x"], @bind.local_variables )
- end
- end