testlab 1.22.0 → 1.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/testlab/container.rb +2 -2
- data/lib/testlab/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Y2ZjOTlmZDhmYTIyOTAyNzFmOGZiOGQzOWE1OTU5ODI2YjQyNTg3OQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Y2Y0NTliMjU3YThiODE3ODFlODI1MWFkYWUxMzIzZWMxY2U5NzkyYg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzJmMmQ0ZmRmMGYyNWQ4NTVkYmEzZGNjYTgwMzY3ODczZDkzMGNiMTVkMTZl
|
10
|
+
OGI0ZWVjMjY5OTc3NTI1MzE1MmQ0MzQ0OWE3ZjU4ZWU3Y2UwZWQ1YTU1YWE1
|
11
|
+
MmUyMDZiZjc2ZjZlOTE1Yzc1YmJmMjQ5ZDU0ZDBmNDBjYTI2MTE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NjNhMTc5NmYzNTY5YzVlZTcyZjEzYWMyOGFmY2VjMGVjNzg2N2ZlMDAxM2Y3
|
14
|
+
NzNkNzhlYWY1MjhkZmU1NTI0NjkzZWU0NzgxYWY5MzNmZTJmMDM5YTRhM2Nh
|
15
|
+
Mzc3MzIwNDYyYWYzNzUxMGM0ZDk3NDU0NzRhZTJhMzI0YWNkY2U=
|
data/lib/testlab/container.rb
CHANGED
@@ -160,7 +160,7 @@ class TestLab
|
|
160
160
|
|
161
161
|
if self.priority.nil? && (self.template == false)
|
162
162
|
$priority_counter ||= 0
|
163
|
-
self.priority
|
163
|
+
self.priority = (1000 - $priority_counter)
|
164
164
|
$priority_counter += 1
|
165
165
|
end
|
166
166
|
|
@@ -171,7 +171,7 @@ class TestLab
|
|
171
171
|
|
172
172
|
parent = TestLab::Container.first(self.inherit)
|
173
173
|
if parent.nil?
|
174
|
-
raise ContainerError, "Could not find the container you specified to inherit attributes from!"
|
174
|
+
raise ContainerError, "Could not find the container you specified to inherit attributes from! (#{self.inherit.inspect})"
|
175
175
|
end
|
176
176
|
|
177
177
|
# Inherit the containers attributes
|
data/lib/testlab/version.rb
CHANGED