blob: 2271a5101fc0a565128832235cf61df376090317 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
[[runs]]
input = [ "render", "Bob", "22" ]
expect.exit-code = 0
expect.result = "Bob is 22 years old"
[[runs]]
input = [ "render", "Bob", "22", "--json" ]
expect.exit-code = 0
expect.result = "{\"member_name\":\"Bob\",\"member_age\":22}"
|