spec/kitchen/config_spec.rb in test-kitchen-1.16.0 vs spec/kitchen/config_spec.rb in test-kitchen-1.17.0

- old
+ new

@@ -33,11 +33,15 @@ module Kitchen class DummyLoader attr_writer :data + def initialize + @data = {} + end + def read - @data || {} + @data end end end describe Kitchen::Config do