allure-rspec 0.7.5 → 0.7.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d9b730d756b6275b8cf0d88135d193267531c45f
4
- data.tar.gz: ae7fc1956fd708096113bdcd3da0bcb545d7a327
3
+ metadata.gz: 08e5712a276ccb63c38f1c91abb01cb4e7ff1bb6
4
+ data.tar.gz: 97166bcfba57ad6e534eb997ed6702525971175a
5
5
  SHA512:
6
- metadata.gz: f3078200c7ca0c6202d9545693f7deb4b47c591d3993b30f2b9abd7c83e6fd687fee72791593db70cac6503790ac8341b7b38e68a5804ef5de6731224fee29a0
7
- data.tar.gz: 6cf8f774b57018b4bb4a95dff2191c4182638332d2ef4f7c60035beb0577feaa1bca288bb29ed6a13ab96159e646add0426159e1ad20d761dbb43919c7bb45fc
6
+ metadata.gz: a539a6c569df76510de8cf6879973dcaaa599611f4befdea0db5a9b24d08ce0af34f9d34e806fa0a525c7b3d10db6077a6765ef4098428529904a4c58fac8922
7
+ data.tar.gz: 69c8237431ea33686fac81229f419aceb98045be9058dd0cc09ecf35d8bb1fbeb071e5604b7878d2a0c0ac915f26673690513eec51740aa11399a10d13cdf931
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- allure-rspec (0.7.4)
4
+ allure-rspec (0.7.6)
5
5
  allure-ruby-adaptor-api (= 0.6.9)
6
6
  rspec (~> 3.2)
7
7
 
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
@@ -1,5 +1,5 @@
1
1
  module AllureRSpec # :nodoc:
2
2
  module Version # :nodoc:
3
- STRING = '0.7.5'
3
+ STRING = '0.7.6'
4
4
  end
5
5
  end
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.5
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: 2015-11-09 00:00:00.000000000 Z
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.5
118
+ summary: allure-rspec-0.7.6
119
119
  test_files: []