Class: Dev::Coverage::None

Inherits:
Base show all
Defined in:
lib/firespring_dev_commands/coverage/none.rb

Overview

Class which provides methods to effectvely skip coverage

Instance Method Summary collapse

Constructor Details

#initializeNone

Returns a new instance of None.



6
7
8
# File 'lib/firespring_dev_commands/coverage/none.rb', line 6

def initialize(*)
  super()
end

Instance Method Details

#checkObject

Checks the code coverage against the defined threshold



26
27
28
# File 'lib/firespring_dev_commands/coverage/none.rb', line 26

def check(*)
  # Nothing to do here
end

#node_optionsObject

Returns the node options for generating code coverage file



16
17
18
# File 'lib/firespring_dev_commands/coverage/none.rb', line 16

def node_options
  []
end

#php_optionsObject

Returns the php options for generating code coverage file



11
12
13
# File 'lib/firespring_dev_commands/coverage/none.rb', line 11

def php_options
  []
end

#ruby_optionsObject

Returns the ruby options for generating code coverage file



21
22
23
# File 'lib/firespring_dev_commands/coverage/none.rb', line 21

def ruby_options
  []
end