From c0a33b340b96f5fb8bc7baf38d01f46deda2fb25 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Tue, 30 Apr 2019 10:46:09 -0700 Subject: [PATCH] Add test for integral --build-memory-limit --- tests/unit/test_args.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/unit/test_args.py b/tests/unit/test_args.py index a1401468..91ead8bc 100644 --- a/tests/unit/test_args.py +++ b/tests/unit/test_args.py @@ -40,6 +40,17 @@ def test_dry_run(): assert not r2d.run assert not r2d.push + +def test_mem_limit(): + """ + Test various ways of passing --build-memory-limit + """ + r2d = make_r2d(['--build-memory-limit', '1024', '.']) + assert int(r2d.build_memory_limit) == 1024 + + r2d = make_r2d(['--build-memory-limit', '3K', '.']) + assert int(r2d.build_memory_limit) == 1024 * 3 + def test_run_required(): """ Test all the things that should fail if we pass in --no-run