Results 31 comments of Jason Vercellone

I rolled my own Get-VSTSRelease that indirectly calls Invoke-WebRequest as a workaround, but the effort to integrate it with (or conditionally circumvent) vsteam's _callAPI is a bit daunting.

My iApp knowledge is admittedly lacking, but I think this module IS the right place for this. My perspective is that F5-LTM refers to the physical device(s) not iControl. This...

Possible, but not very portable. When adding or modifying tests that would complicate commits and merges, and would likely result in someone (probably me) inadvertently committing private settings. I was...

I was thinking the F5Session(s) could be serialized to the same json file as the rest of the configuration. Something along the lines of: ``` JSON { "Sessions": [ {...

Edited my previous comments to change $PSHOME to $HOME to more accurately reflect my intent of storing the configuration somewhere under the user's home directory (i.e. c:\Users\username) by default. Sorry...

I intended to refine this further before sharing, but I just gave in and checked in a first draft to a new branch ([pester](/vercellone/POSH-LTM-Rest/tree/pester)). In it I've added 2 files:...

- The config file provided is an example only. The Pester test reads from $HOME\F5-LTM.json (not the one in the module folder). - Obviously, I chose the integration test path....

Commit 566bfb3 is available as a preview. It is not PR worthy yet, but IMHO it is a much cleaner solution than JSON. I'll follow up with a sample test...

### Commit bbe943e - Uses a single $F5LTMTestCases variable (hashtable of testcase collections) instead of a variable per test case collection. If you have an existing file, you can simply...

Thanks for the feedback. Looking forward to improving this greatly. Hopefully my comments below will prove helpful. - Conditional environment variable override of the test script location: c4de1ce. - I...