Add a basic testing framework using Vagrant.

This commit is contained in:
2013-11-06 23:24:36 +00:00
parent 49ccea5e77
commit 0d10a77ad2
7 changed files with 62 additions and 3 deletions

7
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,7 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "base"
config.vm.provision :shell, :path => ".vagrant/provision.sh"
end