From: Sergey Bronnikov <sergeyb@tarantool.org>
To: Alexander Turenko <alexander.turenko@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org, v.shpilevoy@tarantool.org
Subject: Re: [Tarantool-patches] [PATCH 2/2] test: add regression test for table.clear()
Date: Mon, 31 Aug 2020 14:20:01 +0300 [thread overview]
Message-ID: <20200831112001.GE94343@pony.bronevichok.ru> (raw)
In-Reply-To: <20200728164130.j7dvrpz7azdonqqa@tkn_work_nb>
Alexander, thanks for review!
On 19:41 Tue 28 Jul , Alexander Turenko wrote:
> > --- /dev/null
> > +++ b/test/box-tap/gh-5210-table-clear.test.lua
>
> I would place it into app-tap, because it is not related to box.
ok, moved to app-tap suite.
> > +t = {a = 1, b = 2}
>
> I would use 'local' here.
Added.
> > +test:is(table.clear(t), nil, 'table clear')
>
> I would check that the table is cleared: say, using `next(t)`. It must
> return `nil` for an empty table.
Added is_deeply() to make sure it is empty:
local t = {a = 1, b = 2}
test:is(table.clear(t), nil, 'table clear')
test:is_deeply(t, {}, 'table is clear')
> WBR, Alexander Turenko.
--
sergeyb@
next prev parent reply other threads:[~2020-08-31 11:20 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-28 13:52 [Tarantool-patches] [PATCH 0/2] Recover of table.clear() method sergeyb
2020-07-28 13:52 ` [Tarantool-patches] [PATCH 1/2] src: return back import " sergeyb
2020-07-28 16:41 ` Alexander Turenko
2020-08-31 11:14 ` Sergey Bronnikov
2020-09-01 13:57 ` Alexander Turenko
2020-08-12 13:03 ` Oleg Babin
2020-08-31 11:18 ` Sergey Bronnikov
2020-07-28 13:52 ` [Tarantool-patches] [PATCH 2/2] test: add regression test for table.clear() sergeyb
2020-07-28 16:41 ` Alexander Turenko
2020-08-31 11:20 ` Sergey Bronnikov [this message]
2020-07-28 16:41 ` [Tarantool-patches] [PATCH 0/2] Recover of table.clear() method Alexander Turenko
2020-09-02 9:49 ` Sergey Bronnikov
2020-09-08 13:25 ` Kirill Yukhin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200831112001.GE94343@pony.bronevichok.ru \
--to=sergeyb@tarantool.org \
--cc=alexander.turenko@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--cc=v.shpilevoy@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH 2/2] test: add regression test for table.clear()' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox