Sha256: c427aaae6cd539d9c3ea5a3824049f50a309b44f063741ae9daff3cc454e2947

Contents?: true

Size: 391 Bytes

Versions: 30

Compression:

Stored size: 391 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

30 entries across 30 versions & 1 rubygems

Version Path
mutant-0.5.16 test_app/lib/test_app/literal.rb
mutant-0.5.15 test_app/lib/test_app/literal.rb
mutant-0.5.14 test_app/lib/test_app/literal.rb
mutant-0.5.13 test_app/lib/test_app/literal.rb
mutant-0.5.12 test_app/lib/test_app/literal.rb
mutant-0.5.11 test_app/lib/test_app/literal.rb
mutant-0.5.10 test_app/lib/test_app/literal.rb
mutant-0.5.9 test_app/lib/test_app/literal.rb
mutant-0.5.8 test_app/lib/test_app/literal.rb
mutant-0.5.7 test_app/lib/test_app/literal.rb
mutant-0.5.6 test_app/lib/test_app/literal.rb
mutant-0.5.5 test_app/lib/test_app/literal.rb
mutant-0.5.4 test_app/lib/test_app/literal.rb
mutant-0.5.3 test_app/lib/test_app/literal.rb
mutant-0.5.2 test_app/lib/test_app/literal.rb
mutant-0.5.1 test_app/lib/test_app/literal.rb
mutant-0.5.0 test_app/lib/test_app/literal.rb
mutant-0.3.6 test_app/lib/test_app/literal.rb
mutant-0.3.5 test_app/lib/test_app/literal.rb
mutant-0.3.4 test_app/lib/test_app/literal.rb