producer-core 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe0e6e00501be89b11538f89e014ea2d7be16d29
|
4
|
+
data.tar.gz: 5b98d55955060e08436d27d59711da43fe4cb567
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 354712e35137ad8c7aa6e8eebc449de20fe2cd55dc91411dd1c8589c7ae028a082b0035ad8313d2b48ef25513f9f33973939bd1413487351812d33a325b171d4
|
7
|
+
data.tar.gz: 0c806c38132ad2223a2e6bd21d5be4b60391e2e037c531883727bab6eec1431ae769c3f90341b4893da687c5c0d42646e9429ab757bd8e91d0d4772b1b97894c
|
@@ -20,6 +20,10 @@ Then /^the remote directory "([^"]+)" must exist$/ do |path|
|
|
20
20
|
check_directory_presence [path], true
|
21
21
|
end
|
22
22
|
|
23
|
+
Then /^the remote file "([^"]+)" must exist$/ do |path|
|
24
|
+
check_file_presence [path], true
|
25
|
+
end
|
26
|
+
|
23
27
|
Then /^the remote file "([^"]+)" must contain "([^"]+)"$/ do |path, content|
|
24
28
|
check_file_content path, content, true
|
25
29
|
end
|
@@ -28,6 +32,10 @@ Then /^the remote file "([^"]+)" must contain exactly "([^"]+)"$/ do |path, cont
|
|
28
32
|
check_file_content path, content
|
29
33
|
end
|
30
34
|
|
35
|
+
Then /^the remote file "([^"]+)" must contain exactly:$/ do |path, content|
|
36
|
+
check_file_content path, content
|
37
|
+
end
|
38
|
+
|
31
39
|
Then /^the remote file "([^"]+)" must match \/([^\/]+)\/$/ do |path, pattern|
|
32
40
|
check_file_content path, /#{pattern}/, true
|
33
41
|
end
|