Class: Test::Unit::Assertions::AssertionMessage::Template

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(parts) ⇒ Template

Returns a new instance of Template



2032
2033
2034
2035
# File 'lib/test/unit/assertions.rb', line 2032

def initialize(parts)
  @parts = parts
  @count = parts.find_all{|e| e == '?'}.size
end

Instance Attribute Details

#countObject (readonly)

Returns the value of attribute count



2030
2031
2032
# File 'lib/test/unit/assertions.rb', line 2030

def count
  @count
end

Class Method Details

.create(string) ⇒ Object



2025
2026
2027
2028
# File 'lib/test/unit/assertions.rb', line 2025

def self.create(string)
  parts = (string ? string.scan(/(?=[^\\])\?|(?:\\\?|[^\?])+/m) : [])
  self.new(parts)
end

Instance Method Details

#result(parameters) ⇒ Object



2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
# File 'lib/test/unit/assertions.rb', line 2037

def result(parameters)
  raise "The number of parameters does not match the number of substitutions." if(parameters.size != count)
  params = parameters.dup
  expanded_template = ""
  @parts.each do |part|
    if part == '?'
      param = params.shift
      if Object.const_defined?(:Encoding)
        expanded_template += concatenatable(param,
                                            expanded_template.encoding)
      else
        expanded_template += param
      end
    else
      expanded_template += part.gsub(/\\\?/m, '?')
    end
  end
  expanded_template
end