tests/symbol.fy in fancy-0.5.0 vs tests/symbol.fy in fancy-0.6.0

- old
+ new

@@ -25,6 +25,11 @@ x = false if: x then: 'foo else: 'bar . is: "bar" x = true if: x then: 'foo else: 'bar . is: "foo" } + + it: "returns self" with: 'to_sym when: { + 'foo to_sym is: 'foo + 'bar to_sym is: 'bar + } }