Tim Chambers
Tim Chambers
I have code: ``` include Concord::Public.new(:cycle) ``` and am testing upgrade to Ruby 2.4.0. Am receiving a new error: ``` protected method `cycle' called for # ``` when I refer...
I was using Adamantium to help drive some immutability into my code, and noted a key issue in testing. I was memoizing under Adamantium::Flat a result from another class that...
Just an FYI I started to use this gem latest version yesterday and was pleased with it's benefits. However I am heavily using mutation testing (mbj/mutant) of whom @dkubb is...
I propose that the duration from initiating mutant (hitting return) until mutant begins the killing processes be measured and added to the reporting output. My reason is that for me...
Wanted to make note that if module_function is specified in a module, that the specifications in corresponding spec files must use '#bar' and not '.bar': ``` describe '#bar' do ......
This one could be debateable. I don't "think" I saw it in any of the suggested prior enhancements.
I was reading through the source code in an effort to better understand the classes of mutations and I got to wondering what the philosophical criteria was for choosing/implementing mutations....
I am trying to use this gem on a moderate sized rails application that is a conversion from a large PHP application. I am new to Rails and Ruby (one...
When running mutant in concurrent mode (multiple workers) it is sometimes useful to insulate the workers activities from each other in accessing resources. Examples: - Distinct in memory caches -...