diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-07-27 11:48:56 -0400 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-07-27 11:48:56 -0400 |
commit | b779d0d0e2d11471241f647c96e6f91683d3c5a0 (patch) | |
tree | 628a42d51c3f2a79ae8aaae7e218078392faef27 /spec/defines | |
parent | f9a04de1d66be8a05c479d18796b8272b3313653 (diff) | |
parent | 62be88b026e19e1750deaf5cf81b3f9519ff651a (diff) |
Merge pull request #99 from daniellawrence/rspec
Getting started with basic rspec
Diffstat (limited to 'spec/defines')
-rw-r--r-- | spec/defines/requirements_spec.rb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/spec/defines/requirements_spec.rb b/spec/defines/requirements_spec.rb new file mode 100644 index 0000000..f8144f3 --- /dev/null +++ b/spec/defines/requirements_spec.rb @@ -0,0 +1,53 @@ +require_relative '../../spec_helper' + +describe 'python::requirements', :type => :define do + let (:title) { '/requirements.txt' } + context "on Debian OS" do + let :facts do + { + :id => 'root', + :kernel => 'Linux', + :lsbdistcodename => 'squeeze', + :osfamily => 'Debian', + :operatingsystem => 'Debian', + :operatingsystemrelease => '6', + :path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', + :concat_basedir => '/dne', + } + end + + describe "requirements as" do + context "/requirements.txt" do + let (:params) {{ :requirements => "/requirements.txt" }} + it { is_expected.to contain_file("/requirements.txt").with( + "mode" => "0644" + + )} + end + + describe "with owner" do + context "bob:bob" do + let (:params) {{ + :owner => 'bob', + :group => 'bob' + }} + it do + expect { + should compile + }.to raise_error(Puppet::Error, /root user must be used when virtualenv is system/) + end + + end + end + + describe "with owner" do + context "default" do + it { is_expected.to contain_file("/requirements.txt").with( + "owner" => "root", + "group" => "root" + )} + end + end + end + end +end |