
- Re-factor - Remove code for notifications - Remove addons - Remove travis-core gem. - Ignore logs directory only - Move core tests to spec/lib
12 lines
371 B
Ruby
12 lines
371 B
Ruby
require 'core_ext/hash/deep_symbolize_keys'
|
|
|
|
describe Build::Config::Matrix do
|
|
it 'can handle nil values in exclude matrix' do
|
|
-> { Build::Config::Matrix.new(matrix: { exclude: [nil] }).expand }.should_not raise_error
|
|
end
|
|
|
|
it 'can handle list values in exclude matrix' do
|
|
-> { Build::Config::Matrix.new(matrix: []).expand }.should_not raise_error
|
|
end
|
|
end
|