Koichi Nakashima
Koichi Nakashima
I merged #189. The performance improved when a lot of output without significant degradation. > I wonder how does it correspond with the` Dump` helper. Doesn't it do the same...
Thanks for the report. It is caused by 9ac94c6. In ksh, this fix seems to slow things down. I plan to fix it.
Fixed in 0c0ff65d083f20aa5031ec71abaa1beab6153820.
Currently, ShellSpec does not support regular expression matching. This is a limitation of the POSIX shell. https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_13 Extended pattern matching may be available in some shells, but it is not...
I'm very sorry for the late reply. I'm very busy right now and don't have enough time to maintain ShellSpec. I would like to include a few bug fixes in...
ShellSpec is developed with rspec as a reference. The DSL was more like rspec in the early stages of development (private) because of the difficulty of developing a DSL, but...
@robert-gurol-signavio > would you welcome a pull request that adds this? Yes, very welcome! > As a hack, I could make this work by making all syntax dispatch less strict....
This is not related to #60. Please replace to `When run usage` instead of `When call usage`. The difference between `call` and `run` is that the former does not use...
You can use `run` to test the function directly as well as `call`. The following code seems to work, but is there any other problem? ```sh Describe 'test usage()' Include...