public void Maybe_WhenCalled_UsesCommonRegexUrl()
        {
            verbEx.Maybe(CommonRegex.Url);

            Assert.IsTrue(verbEx.IsMatch("http://www.google.com"), "Should match url address");
        }
 public VerbalExpression Maybe(string value, bool sanitize = true)
 {
     _verbalExpression.Maybe(value, sanitize);
     return(this);
 }