blob: 6957021f5716424d0701fe0b5ea249ceb71b7e86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright (C) 2016 all contributors <dtas-all@nongnu.org>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: true
require './test/helper'
require 'dtas/mcache'
class TestMcache < Testcase
def test_mcache
mc = DTAS::Mcache.new
exist = nil
mc.lookup('hello') { |infile, hash| exist = hash }
assert_kind_of Hash, exist
assert_equal 'hello', exist[:infile]
assert_operator exist[:btime], :<=, DTAS.now
assert_same exist, mc.lookup('hello')
assert_nil mc.lookup('HELLO')
assert_same exist, mc.lookup('hello'), 'no change after miss'
end
end
|