-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added ability to use equals from the cli #68
Conversation
Hi, jhughes, |
I believe this works with --flag="some string with spaces" and if you want to to have the string in the program be "some string with spaces" you pass in --flag=""some string with spaces"". Usually if you need to pass in some value from the cli with spaces you would use quotes, thats a very common linux practice. |
@jhughes1153 many thanks, that is a great addition to this library to make it more compatible with CLI standards. Can you please add tests covering cases when equals used for types other than string (your tests currently only cover string arguments. For simplicity you can modify existing tests for other types by adding additional validations there. |
Hi, @jhughes1153 , |
Yeah, I added a few more types but not all, do you want full coverage for every type or are the types that I added fine? |
Thanks. LGTM. |
No description provided.