Sha256: e2d997a41c6e68671add948ba55373f989781f8fcf2fc1005c232a6bd6ca7c1b
Contents?: true
Size: 503 Bytes
Versions: 2
Compression:
Stored size: 503 Bytes
Contents
require "spec_helper" RSpec.describe "Generating a new project with the Ansible provisioner" do before(:example) do remove_dummy_app run_arkenstone("--provisioner=ansible") end it "correctly configures Vagrant" do vagrantfile = File.read("#{app_path}/Vagrantfile") expect(vagrantfile).to include('config.vm.provision "ansible"') end it "copies the ansible directory" do ansible_dir = "#{app_path}/provisioners/ansible" expect(File).to exist(ansible_dir) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arkenstone-0.3.0 | spec/features/new_project_with_ansible_spec.rb |
arkenstone-0.2.0 | spec/features/new_project_with_ansible_spec.rb |