Sha256: 4340eb6d2506bfbf91533a0ff2df40f04d08889f26474e2a3a0c807846daebd3

Contents?: true

Size: 392 Bytes

Versions: 25

Compression:

Stored size: 392 Bytes

Contents

# encoding: utf-8

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

25 entries across 25 versions & 1 rubygems

Version Path
mutant-0.7.8 test_app/lib/test_app/literal.rb
mutant-0.7.7 test_app/lib/test_app/literal.rb
mutant-0.7.6 test_app/lib/test_app/literal.rb
mutant-0.7.5 test_app/lib/test_app/literal.rb
mutant-0.7.4 test_app/lib/test_app/literal.rb
mutant-0.7.3 test_app/lib/test_app/literal.rb
mutant-0.7.2 test_app/lib/test_app/literal.rb
mutant-0.7.1 test_app/lib/test_app/literal.rb
mutant-0.6.7 test_app/lib/test_app/literal.rb
mutant-0.6.6 test_app/lib/test_app/literal.rb
mutant-0.6.5 test_app/lib/test_app/literal.rb
mutant-0.6.4 test_app/lib/test_app/literal.rb
mutant-0.6.3 test_app/lib/test_app/literal.rb
mutant-0.6.2 test_app/lib/test_app/literal.rb
mutant-0.6.0 test_app/lib/test_app/literal.rb
mutant-0.5.26 test_app/lib/test_app/literal.rb
mutant-0.5.25 test_app/lib/test_app/literal.rb
mutant-0.5.24 test_app/lib/test_app/literal.rb
mutant-0.5.23 test_app/lib/test_app/literal.rb
mutant-0.5.22 test_app/lib/test_app/literal.rb