specinfra 2.0.0.beta19 → 2.0.0.beta20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/specinfra/command/base/file.rb +4 -0
- data/lib/specinfra/version.rb +1 -1
- data/spec/command/base/file_spec.rb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fde0fdddfccea8e542868cf9c1e51d7ce5a09838
|
4
|
+
data.tar.gz: ee68a571d7c0c2812832574d4a0bb09c3c0bdc83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0540f2743077e41ecf98eadbdca9b69ef5c3f7e2c0bb1e66884cb5c3905bfc2c972da74f58cbdebe6e2b8f1325c305edd9ae1a64941dfc4aac80dedc2649ff9e
|
7
|
+
data.tar.gz: cdfa3309de23b33a7770f68884c6207531edeed81332f6d572e15cb85c89f7fac508cd964edc143467f009f4b90dbdf6b66988a01b4fae5b54d8401b7d87ef9a
|
data/lib/specinfra/version.rb
CHANGED
@@ -26,4 +26,8 @@ describe 'File related commands' do
|
|
26
26
|
context Specinfra.command.change_file_group('/tmp', 'root') do
|
27
27
|
it { should eq 'chgrp root /tmp' }
|
28
28
|
end
|
29
|
+
|
30
|
+
context Specinfra.command.create_file_as_directory('/tmp') do
|
31
|
+
it { should eq 'mkdir -p /tmp' }
|
32
|
+
end
|
29
33
|
end
|