Alexander Grund

Results 960 comments of Alexander Grund

Can you please first make up your mind what you want exactly and then explain that? (see https://github.com/lgeiger/black-action/issues/6#issuecomment-561264944) `args` are the arguments passed to black. So read the block docu...

Found a reason NOT to merge this: It disallows fuzzy matching of inputs. E.g. `stub copy "*/foo */bar :"` How about adding a parameter to `stub` in the sense like...

Another method to fix this: Match both quoted and unquoted: case "$argument" in $pattern ) ;; "$pattern" ) ;; * ) match_found=0 ;; esac

I would very much like to see such a function probably also (or instead) in a `verify_stubs` fashion: - Your function cleans up all stubs so is suitable to be...

My current version: ``` _STUB_ORIG_BASENAME=$(command -v basename) _STUB_ORIG_ECHO=$(command -v echo) function verify_stubs { local result=0 if [ -d "${BATS_MOCK_BINDIR}" ]; then for program in "${BATS_MOCK_BINDIR}"/*; do program=$("${_STUB_ORIG_BASENAME}" "${program}") if [...

Yes. I've just finished it. First (for compiling under windows... should not have any sideeffects for other OSes but other patch is based on this) http://www.sendspace.com/file/obhiae Second (the real patch...

I'll try tomorrow. But i'm not used to Git...

Yes just found it. Havn't seen any real changes there (only to the npm json file). Not sure which is better to use so I opened those issues against the...