First version of tests

This commit is contained in:
Bruno Sutic
2014-05-24 15:38:41 +02:00
parent 2e8f2aa0cd
commit 45cd3d40fa
9 changed files with 243 additions and 0 deletions

16
test/Vagrantfile vendored Normal file
View File

@ -0,0 +1,16 @@
Vagrant.require_version '>= 1.6.0'
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provider 'docker' do |d|
d.build_dir = '.'
d.has_ssh = true
end
# tpm is synced with `/root/tmux_plugin_manager` in vagrant
config.vm.synced_folder '../', '/root/tmux_plugin_manager'
config.ssh.username = 'root'
config.ssh.private_key_path = 'docker_ssh.key'
end