powerslim
Version:
An implementation of FitNesse Slim in PowerShell
15 lines (13 loc) • 432 B
Plain Text
!|script|
|eval|$d1=new-Object hashtable|
|eval|$d2=new-Object hashtable|
|eval|$d3=new-Object hashtable|
|eval|$d1['col1'] = 'Value1'; $d1['col2'] = 'Value4';|
|eval|$d2['col1'] = 'Value2'; $d2['col2'] = 'Value5';|
|eval|$d3['col1'] = 'Value3'; $d3['col2'] = 'Value6';|
|eval|$arrDict = $d1,$d2,$d3 |
|Query:Local|$arrDict|
|col1 |col2 |
|Value1 |Value4 |
|Value2 |Value5 |
|Value3 |Value6 |