Sha256: 1e2d1cc7e610105107f264e88b65f6fcf8c01c92ca6d9616dbb872f7647f896f

Contents?: true

Size: 394 Bytes

Versions: 29

Compression:

Stored size: 394 Bytes

Contents

module TestApp
  # Class for integration testing literal mutations
  class Literal
    def boolean
      true
    end

    def command(_foo)
      self
    end

    def string
      'string'
    end

    def uncovered_string
      'string'
    end

    def self.string
      'string'
    end

    def symbol
      :symbol
    end

    def float
      2.4
    end
  end

  class Empty
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
mutant-0.9.11 test_app/lib/test_app/literal.rb
mutant-0.9.10 test_app/lib/test_app/literal.rb
mutant-0.9.9 test_app/lib/test_app/literal.rb
mutant-0.9.8 test_app/lib/test_app/literal.rb
mutant-0.9.7 test_app/lib/test_app/literal.rb
mutant-0.9.6 test_app/lib/test_app/literal.rb
mutant-0.9.5 test_app/lib/test_app/literal.rb
mutant-0.9.4 test_app/lib/test_app/literal.rb
mutant-0.9.3 test_app/lib/test_app/literal.rb
mutant-0.9.2 test_app/lib/test_app/literal.rb
mutant-0.9.1 test_app/lib/test_app/literal.rb
mutant-0.9.0 test_app/lib/test_app/literal.rb
mutant-0.8.24 test_app/lib/test_app/literal.rb
mutant-0.8.23 test_app/lib/test_app/literal.rb
mutant-0.8.22 test_app/lib/test_app/literal.rb
mutant-0.8.21 test_app/lib/test_app/literal.rb
mutant-0.8.20 test_app/lib/test_app/literal.rb
mutant-0.8.19 test_app/lib/test_app/literal.rb
mutant-0.8.18 test_app/lib/test_app/literal.rb
mutant-0.8.17 test_app/lib/test_app/literal.rb