Dan Kubb

Results 25 issues of Dan Kubb

When the response is negotiated based on the Accept headers the `Vary` header is not set. There is a comment in `g07` about setting `Vary` but I don't think you'd...

enhancement
help wanted

This is along the same lines as the minimum_coverage feature that @infertux added. What I would like is a way to specify the exact expected coverage for the system. If...

Feature

When mutant fails because of a timeout violation it would be nice to have it more prominent. Especially when that failure results in a noop. I had some failures that...

enhancement

The `Enumerable#to_set` method can accept a block like `Enumerable#map` and it will return a `Set` containing unique entries. If the return value of `#map` (a) Doesn't need to include duplicates...

mutation

Currently we are using mutant on a rails project, and we would like the following mutation operators: ```ruby #save -> #save! #create -> #create! #update -> #update! ``` This would...

enhancement
mutation
rails

A feature request I have would be to add two flags to the mutant cli: * `--skip-subject` * `--pending-subject` The `--skip-subject` flag should perform exactly the same as `--ignore-subject`, where...

enhancement

In a commit with a removal of a method, the location of the removed code was used for subject selection. The method directly below had no coverage, and was selected,...

bug

When using mutant on some code that uses kwargs, it came up with only one alive mutation: ``` diff -def initialize(name, includes:, **options) +def initialize(name__mutant__, includes:, **options) super end ```...

enhancement
mutation

This specific mutation will expose cases where `or` is used but the return value of the second expression is not used when the first expression is invalid. It is usually...

enhancement
mutation

I have a search form on a website that submits via GET, and I would love to be able to use instantclick with it.

Enhancement