# encoding: utf-8 require 'spec_helper' describe Actions::CreateDirectory do context '#initialize' do it 'requires a path' do Actions::CreateDirectory.new(working_directory) end end context '#run' do it 'runs the action' do action = Actions::CreateDirectory.new(::File.join(working_directory, 'repo')) silence(:stderr) do action.run end expect(path_exists?('repo')).to be_true end it 'respects existing path' do create_directory('repo') action = Actions::CreateDirectory.new(::File.join(working_directory, 'repo')) result = capture(:stderr) do ProxyTester.ui_logger.level = :info action.run end expect(result).to include('already') end it 'does not respect existing path if forced to' do create_directory('repo') action = Actions::CreateDirectory.new(::File.join(working_directory, 'repo'), force: true) result = capture(:stderr) do ProxyTester.ui_logger.level = :info action.run end expect(result).to include('Creating directory') end it 'resolves ~' do action = with_environment 'HOME' => working_directory do Actions::CreateDirectory.new('~/file') end silence(:stderr) do action.run end expect(path_exists?('file')).to be_true end end end