diff options
| author | OpportunityLiu <[email protected]> | 2019-06-18 19:50:39 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-06-18 19:50:39 +0800 |
| commit | 98d4504577b586ef2398346a0db2743081cf03a8 (patch) | |
| tree | 3aab00679f61eee14a62afb3989ed3d278bdb5a3 /tests/test_utils/context.lua | |
| parent | 0c58eac269fda12b1568bc9704237a48aedbc4b3 (diff) | |
skip some tests
Diffstat (limited to 'tests/test_utils/context.lua')
| -rw-r--r-- | tests/test_utils/context.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_utils/context.lua b/tests/test_utils/context.lua new file mode 100644 index 000000000..50271ac76 --- /dev/null +++ b/tests/test_utils/context.lua @@ -0,0 +1,13 @@ +import("test_build") +import("test_skip") +import("test_assert") + +function main(filename) + + local context = { filename = filename } + table.join2(context, test_build()) + table.join2(context, test_skip()) + table.join2(context, test_assert()) + + return context +end
\ No newline at end of file |
