test/unit/ut_11_lookup.rb in ruote-2.1.11 vs test/unit/ut_11_lookup.rb in ruote-2.2.0

- old
+ new

@@ -16,9 +16,16 @@ assert_equal(%w[ A B C ], Ruote.lookup({ 'h' => %w[ A B C ] }, 'h')) assert_equal('B', Ruote.lookup({ 'h' => %w[ A B C ] }, 'h.1')) end + def test_lookup_dot + + h = { 'a' => 'b' } + + assert_equal h, Ruote.lookup(h, '.') + end + def test_container_lookup assert_equal( [ 'hh', { 'hh' => %w[ A B C ] } ], Ruote.lookup({ 'h' => { 'hh' => %w[ A B C ]} }, 'h.hh', true))