Class: Covered::Only

Inherits:
Filter show all
Defined in:
lib/covered/files.rb

Instance Attribute Summary collapse

Attributes inherited from Wrapper

#output

Instance Method Summary collapse

Methods inherited from Filter

#accept?, #each, #mark

Methods inherited from Wrapper

#accept?, #add, #clear, #each, #expand_path, #finish, #mark, #relative_path, #start, #to_h

Methods inherited from Base

#accept?, #add, #clear, #each, #expand_path, #finish, #mark, #relative_path, #start

Constructor Details

#initialize(output, pattern) ⇒ Only

Returns a new instance of Only.



115
116
117
118
119
# File 'lib/covered/files.rb', line 115

def initialize(output, pattern)
	super(output)
	
	@pattern = pattern
end

Instance Attribute Details

#patternObject (readonly)

Returns the value of attribute pattern.



121
122
123
# File 'lib/covered/files.rb', line 121

def pattern
  @pattern
end

Instance Method Details

#match?(path) ⇒ Boolean

Returns:

  • (Boolean)


123
124
125
# File 'lib/covered/files.rb', line 123

def match?(path)
	@pattern === path
end