class Oktest::JsonMatcher::OR

Attributes

items[R]

Public Class Methods

new(*items) click to toggle source
# File lib/oktest.rb, line 739
def initialize(*items)
  @items = items
end

Public Instance Methods

inspect() click to toggle source
# File lib/oktest.rb, line 743
def inspect()
  #; [!2mu33] returns 'OR(...)' string.
  return "OR(#{@items.collect(&:inspect).join(', ')})"
end