2017-04-02 19:13:14 +03:00
|
|
|
require_relative "helper"
|
2017-04-02 10:57:39 +03:00
|
|
|
|
2018-07-19 14:46:51 +03:00
|
|
|
module Ruby
|
2018-07-19 16:30:36 +03:00
|
|
|
class HashArray < MiniTest::Test
|
2018-06-29 22:46:39 +03:00
|
|
|
include RubyTests
|
2017-04-02 10:57:39 +03:00
|
|
|
|
|
|
|
def test_empty
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal HashStatement , lst.class
|
|
|
|
end
|
|
|
|
def test_empty_length
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal 0 , lst.length
|
|
|
|
end
|
|
|
|
def test_one
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{ 1 => 2}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal HashStatement , lst.class
|
|
|
|
end
|
|
|
|
def test_one_length
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{ 1 => 2}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal 1 , lst.length
|
|
|
|
end
|
|
|
|
def test_one_pair
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{ 1 => 2}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal 1 , lst.hash.keys.first.value
|
|
|
|
end
|
|
|
|
def test_two_length
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{ sym: :works , 'string_too' => 2}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal 2 , lst.length
|
|
|
|
end
|
|
|
|
def test_two_key_one
|
2018-06-29 22:46:39 +03:00
|
|
|
lst = compile( "{ sym: :works , 'string_too' => 2}")
|
2017-04-02 10:57:39 +03:00
|
|
|
assert_equal :sym , lst.hash.keys.first.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|