-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor cases array in tests for stat
Before this commit `simple_operation_cases` were organized as map (table indexed not with numbers), in Lua iteration over map does not occur in the order in which the elements were specified in the map. But simple operation cases should be executed in the order in which they are specified, because, for example, if `replace()` is performed before `insert()`, an error will be received. Therefore, `simple_operation_cases` has been refactored as table indexed with numbers. Select cases has been refactored for consistency. Part of #193
- Loading branch information
Showing
1 changed file
with
80 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters