Method: RSpec::Core::Formatters::ConsoleCodes.console_code_for
- Defined in:
- lib/rspec/core/formatters/console_codes.rb
permalink .console_code_for(code_or_symbol) ⇒ Fixnum
Fetches the correct code for the supplied symbol, or checks that a code is valid. Defaults to white (37).
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/rspec/core/formatters/console_codes.rb', line 47 def console_code_for(code_or_symbol) if (config_method = config_colors_to_methods[code_or_symbol]) console_code_for RSpec.configuration.__send__(config_method) elsif VT100_CODE_VALUES.key?(code_or_symbol) code_or_symbol else VT100_CODES.fetch(code_or_symbol) do console_code_for(:white) end end end |