diff options
Diffstat (limited to 'spec/inputs/test/pipe_spec.yue')
| -rw-r--r-- | spec/inputs/test/pipe_spec.yue | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/inputs/test/pipe_spec.yue b/spec/inputs/test/pipe_spec.yue new file mode 100644 index 0000000..58d48aa --- /dev/null +++ b/spec/inputs/test/pipe_spec.yue | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | describe "pipe", -> | ||
| 2 | it "pipes through functions", -> | ||
| 3 | f = (x)-> x + 1 | ||
| 4 | g = (x)-> x * 2 | ||
| 5 | assert.same (3 |> f |> g), 8 | ||
