Sha256: 607c3e52474efc1518e34aa96b1998f79690c2a1654ff5d2b9776a17d516ccb6

Contents?: true

Size: 220 Bytes

Versions: 14

Compression:

Stored size: 220 Bytes

Contents

require 'facets/binding/eval'
require 'test/unit'

class TC_Binding < Test::Unit::TestCase

  def setup
    x = "hello"
    @bind = binding
  end

  def test_eval
    assert_equal( "hello", @bind.eval("x") )
  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
facets-2.8.4 test/core/binding/test_eval.rb
facets-2.8.3 test/core/binding/test_eval.rb
facets-2.8.2 test/core/binding/test_eval.rb
facets-2.8.1 test/core/binding/test_eval.rb
facets-2.8.0 test/core/binding/test_eval.rb
facets-2.7.0 test/core/binding/test_eval.rb
facets-2.6.0 test/core/binding/test_eval.rb
facets-2.4.2 test/core/binding/test_eval.rb
facets-2.4.4 test/core/binding/test_eval.rb
facets-2.4.3 test/core/binding/test_eval.rb
facets-2.5.0 test/core/binding/test_eval.rb
facets-2.5.1 test/core/binding/test_eval.rb
facets-2.4.5 test/core/binding/test_eval.rb
facets-2.5.2 test/core/binding/test_eval.rb