Assertion for testing if a string is lexicographically less than or equal to
another string.
Example
expect('a','to be less than or equal to','b');// passes expect('a','to be less than or equal to','a');// passes expect('b','to be less than or equal to','a');// fails
Assertion for testing if a string is lexicographically less than or equal to another string.