| 48 | end |
| 49 | |
| 50 | def test_values |
| 51 | midnight = 0 |
| 52 | after_midnight = 60 * 10 # 00:10:00 |
| 53 | raw_data = [midnight, after_midnight] |
| 54 | array = build_time32_array(:second, raw_data) |
| 55 | assert_equal(raw_data, array.values) |
| 56 | end |
| 57 | |
| 58 | sub_test_case("unit") do |
| 59 | def test_second |