add tagging functionality to pester describes#35
Conversation
cli usage:
pester <specific test> -Tags "<tag1><space><optionaltag2>"
describe usage:
Describe "Add-Numbers" -Tags 'adder','calculator' {...}
|
This is really nice. We do test pester with pester. Also dont forget to add some documentation to the comment help. Thanks! |
|
Thanks! btw- i think you have a bug in your last commit in here... i left you a msg. |
|
do I need to do anything to get this merged? ;) |
|
You just did... I just needed a reminder and a nudge :-) I'll be doing some work on Pester this weekend (yay! Another weekend where I want to introduce high level acceptance tests to ensure the growth of On Tue, Jan 8, 2013 at 10:28 PM, Rich Siegel notifications@github.comwrote:
Scott Muc |
|
Thanks, merged and tested it. Seems to be working great. The command above does what I expect it to do. I definitely feel that as the API gets more flags and configuration we'll need more tests around this. The current test suite isn't giving me the confidence that everything works if the tests pass. Maybe that's because I haven't gotten my hands dirty much with the codebase lately. Anyways, thank you for reminding me to take a look at this! |
This is an initial attempt to add tagging functionality to pester. I am new to pester in general, so if I am going about this wrong let me know.
Do changes to the code typically require their own pester testing?