allure-rspec 0.7.5 → 0.7.6
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/README.md +2 -2
- data/lib/allure-rspec/formatter.rb +1 -1
- data/lib/allure-rspec/version.rb +1 -1
- data/spec/another_spec.rb +2 -2
- 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: 08e5712a276ccb63c38f1c91abb01cb4e7ff1bb6
|
4
|
+
data.tar.gz: 97166bcfba57ad6e534eb997ed6702525971175a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a539a6c569df76510de8cf6879973dcaaa599611f4befdea0db5a9b24d08ce0af34f9d34e806fa0a525c7b3d10db6077a6765ef4098428529904a4c58fac8922
|
7
|
+
data.tar.gz: 69c8237431ea33686fac81229f419aceb98045be9058dd0cc09ecf35d8bb1fbeb071e5604b7878d2a0c0ac915f26673690513eec51740aa11399a10d13cdf931
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -50,11 +50,11 @@ describe MySpec, :feature => "Some feature", :severity => :normal do
|
|
50
50
|
puts "Before step #{s.current_step}"
|
51
51
|
end
|
52
52
|
|
53
|
-
it "should be critical", :story => "First story", :severity => :critical do
|
53
|
+
it "should be critical", :story => "First story", :severity => :critical, :testId => 99 do
|
54
54
|
"string".should == "string"
|
55
55
|
end
|
56
56
|
|
57
|
-
it "should be steps enabled", :story => ["First story", "Second story"] do |e|
|
57
|
+
it "should be steps enabled", :story => ["First story", "Second story"], :testId => 31 do |e|
|
58
58
|
|
59
59
|
e.step "step1" do |s|
|
60
60
|
s.attach_file "screenshot1", take_screenshot_as_file
|
@@ -8,7 +8,7 @@ module AllureRSpec
|
|
8
8
|
|
9
9
|
NOTIFICATIONS = [:example_group_started, :example_group_finished, :example_started,
|
10
10
|
:example_failed, :example_passed, :example_pending, :start, :stop]
|
11
|
-
ALLOWED_LABELS = [:feature, :story, :severity, :language, :framework]
|
11
|
+
ALLOWED_LABELS = [:feature, :story, :severity, :language, :framework, :issue, :testId, :host, :thread]
|
12
12
|
|
13
13
|
def example_failed(notification)
|
14
14
|
res = notification.example.execution_result
|
data/lib/allure-rspec/version.rb
CHANGED
data/spec/another_spec.rb
CHANGED
@@ -11,11 +11,11 @@ describe "Some another spec", :feature => ["Some Feature"], :severity => :normal
|
|
11
11
|
puts "after suite"
|
12
12
|
end
|
13
13
|
|
14
|
-
it "10 cannot be greater than 19", :story => ["Some story"] do
|
14
|
+
it "10 cannot be greater than 19", :story => ["Some story"], :testId => 10 do
|
15
15
|
expect(10).to be > 19
|
16
16
|
end
|
17
17
|
|
18
|
-
it "4 must not be equal to 5" do
|
18
|
+
it "4 must not be equal to 5", :testId => 20 do
|
19
19
|
expect(5).to be eql(4)
|
20
20
|
end
|
21
21
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: allure-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Sadykov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -115,5 +115,5 @@ rubyforge_project:
|
|
115
115
|
rubygems_version: 2.4.6
|
116
116
|
signing_key:
|
117
117
|
specification_version: 4
|
118
|
-
summary: allure-rspec-0.7.
|
118
|
+
summary: allure-rspec-0.7.6
|
119
119
|
test_files: []
|