allure-ruby-api 0.6 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/allure-ruby-api/builder.rb +2 -2
- data/lib/allure-ruby-api/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c02a8d5d3fc0b5ba039be53a3035b35887a2374
|
4
|
+
data.tar.gz: 90e765abb062e2ea7242c68385a4e77dba3202a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 171948ef50e4441f242b3346d3a232b6ed02986b50904bce3a417e2c135c17ab462c6b6ccc82c6e0fd4a591446fd47a51cbbcb9ff955a126c251a6c30a775d8a
|
7
|
+
data.tar.gz: 3dff949f1c97862e847c0af3f1e702ae146ac512ada7ee8157f56352ffd5d9eda10caee0e0854e4187e0a8c666d4774936f56b8ca3491eaca20915d8283369c5
|
data/Gemfile.lock
CHANGED
@@ -10,7 +10,7 @@ module AllureRubyApi
|
|
10
10
|
attr_accessor :suites
|
11
11
|
MUTEX = Mutex.new
|
12
12
|
|
13
|
-
def start_suite(suite, labels =
|
13
|
+
def start_suite(suite, labels = {:severity => :normal})
|
14
14
|
init_suites
|
15
15
|
MUTEX.synchronize do
|
16
16
|
puts "Starting case_or_suite #{suite} with labels #{labels}"
|
@@ -23,7 +23,7 @@ module AllureRubyApi
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
-
def start_test(suite, test, labels =
|
26
|
+
def start_test(suite, test, labels = {:severity => :normal})
|
27
27
|
MUTEX.synchronize do
|
28
28
|
puts "Starting test #{suite}.#{test} with labels #{labels}"
|
29
29
|
self.suites[suite][:tests][test] = {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: allure-ruby-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Sadykov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -137,5 +137,5 @@ rubyforge_project:
|
|
137
137
|
rubygems_version: 2.0.3
|
138
138
|
signing_key:
|
139
139
|
specification_version: 4
|
140
|
-
summary: allure-ruby-api-0.6
|
140
|
+
summary: allure-ruby-api-0.6.1
|
141
141
|
test_files: []
|