spec/initializer_spec.rb in local_pac-0.1.11 vs spec/initializer_spec.rb in local_pac-0.1.13

- old
+ new

@@ -8,22 +8,27 @@ config_string = <<-EOS.strip_heredoc :log_sink: #{File.join(working_directory, 'log')} :local_storage: #{File.join(working_directory, 'storage', 'cache.git')} :executable: #{File.join(working_directory, 'bin', 'local_pac')} :pid_file: #{File.join(working_directory, 'run', 'pid')} + :sass_cache: #{File.join(working_directory, 'cache', 'sass')} :gem_path: [] EOS config_file = create_file('config.yaml', config_string) config = LocalPac::Config.new(config_file) initializer = Initializer.new({}, config) - silence(:stderr) do - initializer.run + result = capture(:stdout) do + silence(:stderr) do + initializer.run + end end expect(path_exists?('log')).to be_true + expect(path_exists?('cache/sass')).to be_true expect(path_exists?('storage/cache.git')).to be_true expect(path_exists?(File.join('storage', 'cache.git', 'hooks', 'pre-receive'))).to be_true expect(path_exists?('run')).to be_true + expect(result).to include("log_sink: #{File.expand_path(File.join(ENV['HOME'], '.local', 'share', 'local_pac', 'log'))}") end end end