Index: third_party/typ/typ/fakes/tests/host_fake_test.py |
diff --git a/third_party/typ/typ/fakes/tests/host_fake_test.py b/third_party/typ/typ/fakes/tests/host_fake_test.py |
index 02f74e76b3eb6b2fa4fd681fa0cfcad6a9789110..a16b7ba1f544c5cfd4b40566659443735b6a43b3 100644 |
--- a/third_party/typ/typ/fakes/tests/host_fake_test.py |
+++ b/third_party/typ/typ/fakes/tests/host_fake_test.py |
@@ -43,6 +43,11 @@ class TestFakeHost(host_test.TestHost): |
self.assertEqual(err, '') |
self.assertEqual(h.cmds, [['echo', 'hello, world']]) |
+ def test_call_inline(self): |
+ h = self.host() |
+ ret = h.call_inline(['echo', 'hello, world']) |
+ self.assertEqual(ret, 0) |
+ |
def test_capture_output(self): |
h = self.host() |
self.host = lambda: h |