1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00
stedolan-jq/tests/modules/test_bind_order.jq

5 lines
173 B
Plaintext
Raw Normal View History

2015-01-01 01:49:40 -06:00
import "test_bind_order0" as t;
import "test_bind_order1" as t;
import "test_bind_order2" as t;
def check: if [t::sym0,t::sym1,t::sym2] == [0,1,2] then true else false end;