Updated Readme
[vagrant-dotfiles.git] / spec / copy_my_conf / config_spec.rb
1 require "spec_helper"
2 module Vagrant::Provisioners
3 class CopyMyConf < Base
4 describe Config do
5 it "should list all the true attributes" do
6 config = Config.new
7
8 config.vim
9 config.ssh
10
11 all_enabled_attributes = config.all_enabled_attributes
12 all_enabled_attributes.map(&:class) =~ [Vim, Ssh]
13 end
14 end
15 end
16 end
17