Checkpoint / the simplest test looks to be working now (~/.vimrc)
[vagrant-dotfiles.git] / spec / copy_my_conf / config_spec.rb
diff --git a/spec/copy_my_conf/config_spec.rb b/spec/copy_my_conf/config_spec.rb
deleted file mode 100644 (file)
index 5e1334d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-require "spec_helper"
-module Vagrant::Provisioners
-  class CopyMyConf < Base
-    describe Config do
-      it "should list all the true attributes" do
-        config = Config.new
-
-        config.vim
-        config.ssh
-
-        all_enabled_attributes = config.all_enabled_attributes
-        all_enabled_attributes.map(&:class) =~ [Vim, Ssh]
-      end
-    end
-  end
-end
-