Pester Question

Hi guys,

I’m wondering if you can help me out, I feel like I’m missing something simple.

In Pester I want to test that an integer is of a certain value or higher, a pseudo example would be:

2 | Should be -gt 1

Is this possible in Pester? I read somewhere that you can use “Should Be Greater Than” but the test fails because it thinks I’m trying to match against the string of “greater”.

Any help is appreciated.

Kind regards,
Callum

It’s Should BeGreaterThan ; no spaces between “Be”, “Greater” and “Than”. :slight_smile:

Thanks Dave!

I literally found the answer 1 min after posting, I was a little post happy I think.

It pays to browse through the module files first :slight_smile:

Cheers,
Callum