SwensenSoftware / unquote

Write F# unit test assertions as quoted expressions, get step-by-step failure messages for free
http://www.swensensoftware.com/unquote
Apache License 2.0
287 stars 25 forks source link

Reduction Feature Request: support NewUnionCase subexpressions #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
For example,

unquote <@ [1 + 2; 2; 3; 4] = [3; 2; 3; 4] @>

produces

[3; 2; 3; 4] = [3; 2; 3; 4]
true

but should produce

[1 + 2; 2; 3; 4] = [3; 2; 3; 4]
[3; 2; 3; 4] = [3; 2; 3; 4]
true

Original issue reported on code.google.com by stephen....@gmail.com on 15 Feb 2011 at 1:32

GoogleCodeExporter commented 9 years ago
Fixed: now supporting decompiling and reducing NewUnionCases with 
subexpressions including 1) typical union case construction 2) literal list 
construction 3) list cons

Original comment by stephen....@gmail.com on 18 Feb 2011 at 3:55

GoogleCodeExporter commented 9 years ago

Original comment by stephen....@gmail.com on 17 Mar 2011 at 4:13