rspec-steps 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rspec-steps/stepwise.rb +16 -13
- data/spec/example_group_spec.rb +4 -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: add3660a9a830b66c4ff9d3094b790f0f719e41a
|
4
|
+
data.tar.gz: 8f5c5394135f7c5e626079cfb0da8b3e12820231
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ff81fda3e18dd00593d24204c02c733ee3a7fe669d887331649504b6157645e4b68ca1b40a9cda715645547b7c7d7030bb217836f1a9b221df810e42074d7fc
|
7
|
+
data.tar.gz: a36b54d4c630ae663d6db57e3b3a71641863c2b054de4b3955424279047dccc0553111f279adc96d3a2ca4cbbaed16347baec577880f7390c8479bbe88614a45
|
data/lib/rspec-steps/stepwise.rb
CHANGED
@@ -7,15 +7,16 @@ module RSpecStepwise
|
|
7
7
|
@duration = @start = @load_time = nil
|
8
8
|
end
|
9
9
|
|
10
|
-
def notify(*args)
|
10
|
+
#def notify(*args)
|
11
11
|
#noop
|
12
|
-
end
|
12
|
+
#end
|
13
13
|
end
|
14
14
|
|
15
15
|
class WholeListExample < RSpec::Core::Example
|
16
|
-
def initialize(example_group_class, descriptions, metadata)
|
17
|
-
super
|
18
|
-
|
16
|
+
def initialize(example_group_class, reporter, descriptions, metadata)
|
17
|
+
super(example_group_class, descriptions, metadata)
|
18
|
+
#@reporter = ApatheticReporter.new
|
19
|
+
@reporter = reporter
|
19
20
|
build_example_block
|
20
21
|
end
|
21
22
|
|
@@ -40,13 +41,15 @@ module RSpecStepwise
|
|
40
41
|
end
|
41
42
|
example.extend StepExample
|
42
43
|
unless success
|
43
|
-
example.metadata[:
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
exec_result
|
49
|
-
|
44
|
+
example.metadata[:skip] = "Previous step failed"
|
45
|
+
RSpec::Core::Pending.mark_pending!(example, example.skip)
|
46
|
+
# example.metadata[:pending] = true
|
47
|
+
# exec_result = example.metadata[:execution_result]
|
48
|
+
# if exec_result.respond_to? :pending_message=
|
49
|
+
# exec_result.pending_message = "Previous step failed"
|
50
|
+
# else
|
51
|
+
# exec_result[:pending_message] = "Previous step failed"
|
52
|
+
# end
|
50
53
|
end
|
51
54
|
succeeded = with_indelible_ivars do
|
52
55
|
example.run(self, reporter)
|
@@ -216,7 +219,7 @@ module RSpecStepwise
|
|
216
219
|
end
|
217
220
|
|
218
221
|
def run_examples(reporter)
|
219
|
-
whole_list_example = WholeListExample.new(self, "step list", {})
|
222
|
+
whole_list_example = WholeListExample.new(self, reporter, "step list", {})
|
220
223
|
|
221
224
|
instance = new
|
222
225
|
if respond_to? :before_context_ivars
|
data/spec/example_group_spec.rb
CHANGED
@@ -45,6 +45,8 @@ describe RSpec::Core::ExampleGroup do
|
|
45
45
|
group.run
|
46
46
|
end
|
47
47
|
|
48
|
+
expect(group.examples.length).to eq(5)
|
49
|
+
|
48
50
|
group.examples.each do |example|
|
49
51
|
expect(example.metadata[:execution_result].status).to eq(:passed)
|
50
52
|
end
|
@@ -128,7 +130,8 @@ describe RSpec::Core::ExampleGroup do
|
|
128
130
|
group.run
|
129
131
|
end
|
130
132
|
|
131
|
-
expect(group.examples[
|
133
|
+
expect(group.examples[0].metadata[:execution_result].status).to eq(:failed)
|
134
|
+
expect(group.examples[1].metadata[:execution_result].status).to eq(:pending)
|
132
135
|
end
|
133
136
|
|
134
137
|
it "should allow nested steps", :pending => "Not really" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-steps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Judson Lester
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-12-
|
12
|
+
date: 2014-12-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: corundum
|
@@ -330,7 +330,7 @@ rdoc_options:
|
|
330
330
|
- --main
|
331
331
|
- doc/README
|
332
332
|
- --title
|
333
|
-
- rspec-steps-1.0.
|
333
|
+
- rspec-steps-1.0.4 RDoc
|
334
334
|
require_paths:
|
335
335
|
- lib/
|
336
336
|
required_ruby_version: !ruby/object:Gem::Requirement
|