Sha256: 0d97435c493d2a2a4c416563368cb57e432ee88ba210733d3bcb9314f4a558af

Contents?: true

Size: 373 Bytes

Versions: 9

Compression:

Stored size: 373 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
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mutant-0.8.7 test_app/lib/test_app/literal.rb
mutant-0.8.6 test_app/lib/test_app/literal.rb
mutant-0.8.5 test_app/lib/test_app/literal.rb
mutant-0.8.4 test_app/lib/test_app/literal.rb
mutant-0.8.3 test_app/lib/test_app/literal.rb
mutant-0.8.2 test_app/lib/test_app/literal.rb
mutant-0.8.1 test_app/lib/test_app/literal.rb
mutant-0.8.0 test_app/lib/test_app/literal.rb
mutant-0.7.9 test_app/lib/test_app/literal.rb