From 25e7c2845ec32bfdaf06f667f7c3f95a5fbcd1ed Mon Sep 17 00:00:00 2001 From: Justin Stoller Date: Thu, 13 Feb 2014 15:38:21 -0800 Subject: [PATCH] Remove basic spec This removes the "basic_spec" as it is largely a sanity check against the env/tooling. The spec itself is problematic because in Puppet Enterprise a module will be in 'sitemoduledir' or 'distmoduledir' depending on whether it's included in PE as part of the distribution or not. However it will always be in 'distmoduledir' for FOSS. --- spec/acceptance/basic_spec.rb | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 spec/acceptance/basic_spec.rb diff --git a/spec/acceptance/basic_spec.rb b/spec/acceptance/basic_spec.rb deleted file mode 100644 index dc83986fe..000000000 --- a/spec/acceptance/basic_spec.rb +++ /dev/null @@ -1,12 +0,0 @@ -require 'spec_helper_acceptance' - -# Here we put the more basic fundamental tests, ultra obvious stuff. -describe "basic tests:" do - it 'copies the module across' do - # No point diagnosing any more if the module wasn't copied properly - shell "ls #{default['distmoduledir']}/inifile" do |r| - expect(r.stdout).to match(/Modulefile/) - expect(r.stderr).to be_empty - end - end -end