Skip to content

Commit 27e40da

Browse files
committed
Merge branch 'rename_test_files'
* rename_test_files: Fix travis.yml Include location in postgresql::tablespace test Rename tablespace_spec.pp to tablespace_spec.rb Rename role_spec.pp to role_spec.rb
2 parents d896be3 + cef3be2 commit 27e40da

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.travis.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,19 @@ env:
1111
- PUPPET_GEM_VERSION="~> 2.7.0"
1212
- PUPPET_GEM_VERSION="~> 3.0.0"
1313
- PUPPET_GEM_VERSION="~> 3.1.0"
14+
- PUPPET_GEM_VERSION="~> 3.2.0"
1415
matrix:
1516
allow_failures:
16-
- rvm: 2.0.0
1717
- rvm: ruby-head
1818
exclude:
19+
- rvm: 2.0.0
20+
env: PUPPET_GEM_VERSION="~> 3.1.0"
21+
- rvm: ruby-head
22+
env: PUPPET_GEM_VERSION="~> 3.1.0"
23+
- rvm: 2.0.0
24+
env: PUPPET_GEM_VERSION="~> 3.0.0"
25+
- rvm: ruby-head
26+
env: PUPPET_GEM_VERSION="~> 3.0.0"
1927
- rvm: 1.9.3
2028
env: PUPPET_GEM_VERSION="~> 2.7.0"
2129
- rvm: 2.0.0
File renamed without changes.

spec/unit/defines/tablespace_spec.pp renamed to spec/unit/defines/tablespace_spec.rb

+5
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,10 @@
1010
let :title do
1111
'test'
1212
end
13+
let :params do
14+
{
15+
:location => '/srv/data/foo',
16+
}
17+
end
1318
it { should include_class("postgresql::params") }
1419
end

0 commit comments

Comments
 (0)