Sha256: 053891f0216ead9763fba846d509643f4d7ca1b06a5df79403dc3eed592614ea

Contents?: true

Size: 619 Bytes

Versions: 7

Compression:

Stored size: 619 Bytes

Contents

Mutest::Meta::Example.add :kwrestarg do
  source 'def foo(**bar); end'

  mutation 'def foo; end'
  mutation 'def foo(**bar); bar = {}; end'
  mutation 'def foo(**_bar); end'
  mutation 'def foo(**bar); raise; end'
  mutation 'def foo(**bar); super; end'
end

Mutest::Meta::Example.add :kwrestarg do
  source 'def foo(**_bar); end'

  mutation 'def foo; end'
  mutation 'def foo(**_bar); raise; end'
  mutation 'def foo(**_bar); super; end'
end

Mutest::Meta::Example.add :kwrestarg do
  source 'def foo(**); end'

  mutation 'def foo; end'
  mutation 'def foo(**); raise; end'
  mutation 'def foo(**); super; end'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
mutest-0.0.10 meta/kwrestarg.rb
mutest-0.0.9 meta/kwrestarg.rb
mutest-0.0.8 meta/kwrestarg.rb
mutest-0.0.7 meta/kwrestarg.rb
mutest-0.0.6 meta/kwrestarg.rb
mutest-0.0.5 meta/kwrestarg.rb
mutest-0.0.4 meta/kwrestarg.rb