rspec-core 2.0.0.beta.19 → 2.0.0.beta.20
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.
- data/.gitignore +1 -0
- data/Upgrade.markdown +6 -0
- data/VERSION +1 -1
- data/features/example_groups/shared_example_group.feature +44 -7
- data/features/filtering/exclusion_filters.feature +79 -0
- data/features/filtering/inclusion_filters.feature +1 -1
- data/features/hooks/around_hooks.feature +28 -1
- data/features/pending/pending_examples.feature +2 -4
- data/features/spec_files/arbitrary_file_suffix.feature +13 -0
- data/lib/autotest/rspec2.rb +17 -17
- data/lib/rspec/core.rb +2 -2
- data/lib/rspec/core/command_line.rb +2 -1
- data/lib/rspec/core/configuration.rb +23 -9
- data/lib/rspec/core/deprecation.rb +1 -1
- data/lib/rspec/core/example_group.rb +11 -28
- data/lib/rspec/core/extensions.rb +4 -0
- data/lib/rspec/core/extensions/instance_eval_with_args.rb +39 -0
- data/lib/rspec/core/{kernel_extensions.rb → extensions/kernel.rb} +0 -0
- data/lib/rspec/core/extensions/module_eval_with_args.rb +54 -0
- data/lib/rspec/core/{object_extensions.rb → extensions/object.rb} +3 -1
- data/lib/rspec/core/formatters/base_formatter.rb +20 -43
- data/lib/rspec/core/formatters/base_text_formatter.rb +13 -10
- data/lib/rspec/core/formatters/documentation_formatter.rb +4 -4
- data/lib/rspec/core/formatters/html_formatter.rb +4 -4
- data/lib/rspec/core/formatters/progress_formatter.rb +4 -4
- data/lib/rspec/core/rake_task.rb +1 -1
- data/lib/rspec/core/reporter.rb +65 -0
- data/lib/rspec/core/subject.rb +1 -1
- data/lib/rspec/core/world.rb +11 -3
- data/rspec-core.gemspec +26 -14
- data/spec/autotest/failed_results_re_spec.rb +14 -23
- data/spec/autotest/rspec_spec.rb +1 -1
- data/spec/rspec/core/configuration_spec.rb +74 -9
- data/spec/rspec/core/drb_command_line_spec.rb +2 -2
- data/spec/rspec/core/example_group_spec.rb +13 -7
- data/spec/rspec/core/example_spec.rb +4 -4
- data/spec/rspec/core/formatters/html_formatted-1.8.6.html +280 -0
- data/spec/rspec/core/formatters/html_formatter_spec.rb +5 -3
- data/spec/rspec/core/formatters/progress_formatter_spec.rb +3 -3
- data/spec/rspec/core/formatters/snippet_extractor_spec.rb +2 -2
- data/spec/rspec/core/formatters/text_mate_formatted-1.8.6.html +280 -0
- data/spec/rspec/core/formatters/text_mate_formatter_spec.rb +5 -3
- data/spec/rspec/core/hooks_filtering_spec.rb +104 -0
- data/spec/rspec/core/reporter_spec.rb +34 -0
- data/spec/rspec/core/shared_example_group_spec.rb +22 -2
- data/spec/rspec/core/world_spec.rb +10 -8
- data/spec/rspec/{core/core_spec.rb → core_spec.rb} +0 -0
- data/spec/ruby_forker.rb +1 -1
- data/spec/spec_helper.rb +2 -2
- metadata +39 -33
@@ -25,12 +25,14 @@ module RSpec
|
|
25
25
|
end
|
26
26
|
|
27
27
|
let(:expected_html) do
|
28
|
-
|
28
|
+
unless File.file?(expected_file)
|
29
|
+
raise "There is no HTML file with expected content for this platform: #{expected_file}"
|
30
|
+
end
|
29
31
|
File.read(expected_file)
|
30
32
|
end
|
31
33
|
|
32
34
|
before do
|
33
|
-
RSpec.configuration.stub(:
|
35
|
+
RSpec.configuration.stub(:load_spec_files) do
|
34
36
|
RSpec.configuration.files_to_run.map {|f| load File.expand_path(f) }
|
35
37
|
end
|
36
38
|
end
|
@@ -45,7 +47,7 @@ module RSpec
|
|
45
47
|
# end
|
46
48
|
# end
|
47
49
|
|
48
|
-
it "
|
50
|
+
it "produces HTML identical to the one we designed manually" do
|
49
51
|
Dir.chdir(root) do
|
50
52
|
actual_doc = Nokogiri::HTML(generated_html)
|
51
53
|
backtrace_lines = actual_doc.search("div.backtrace a")
|
@@ -0,0 +1,104 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
module RSpec::Core
|
4
|
+
describe "config block hook filtering" do
|
5
|
+
describe "unfiltered hooks" do
|
6
|
+
it "should be ran" do
|
7
|
+
filters = []
|
8
|
+
RSpec.configure do |c|
|
9
|
+
c.before(:all) { filters << "before all in config"}
|
10
|
+
c.around(:each) {|example| filters << "around each in config"; example.run}
|
11
|
+
c.before(:each) { filters << "before each in config"}
|
12
|
+
c.after(:each) { filters << "after each in config"}
|
13
|
+
c.after(:all) { filters << "after all in config"}
|
14
|
+
end
|
15
|
+
group = ExampleGroup.describe
|
16
|
+
group.example("example") {}
|
17
|
+
group.run_all
|
18
|
+
filters.should == [
|
19
|
+
"before all in config",
|
20
|
+
"around each in config",
|
21
|
+
"before each in config",
|
22
|
+
"after each in config",
|
23
|
+
"after all in config"
|
24
|
+
]
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "hooks with single filters" do
|
29
|
+
it "should be ran if the filter matches the example group's filter" do
|
30
|
+
filters = []
|
31
|
+
RSpec.configure do |c|
|
32
|
+
c.before(:all, :match => true) { filters << "before all in config"}
|
33
|
+
c.around(:each, :match => true) {|example| filters << "around each in config"; example.run}
|
34
|
+
c.before(:each, :match => true) { filters << "before each in config"}
|
35
|
+
c.after(:each, :match => true) { filters << "after each in config"}
|
36
|
+
c.after(:all, :match => true) { filters << "after all in config"}
|
37
|
+
end
|
38
|
+
group = ExampleGroup.describe(:match => true)
|
39
|
+
group.example("example") {}
|
40
|
+
group.run_all
|
41
|
+
filters.should == [
|
42
|
+
"before all in config",
|
43
|
+
"around each in config",
|
44
|
+
"before each in config",
|
45
|
+
"after each in config",
|
46
|
+
"after all in config"
|
47
|
+
]
|
48
|
+
end
|
49
|
+
|
50
|
+
it "should not be ran if the filter doesn't match the example group's filter" do
|
51
|
+
filters = []
|
52
|
+
RSpec.configure do |c|
|
53
|
+
c.before(:all, :match => false) { filters << "before all in config"}
|
54
|
+
c.around(:each, :match => false) {|example| filters << "around each in config"; example.run}
|
55
|
+
c.before(:each, :match => false) { filters << "before each in config"}
|
56
|
+
c.after(:each, :match => false) { filters << "after each in config"}
|
57
|
+
c.after(:all, :match => false) { filters << "after all in config"}
|
58
|
+
end
|
59
|
+
group = ExampleGroup.describe(:match => true)
|
60
|
+
group.example("example") {}
|
61
|
+
group.run_all
|
62
|
+
filters.should == []
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe "hooks with multiple filters" do
|
67
|
+
it "should be ran if all hook filters match the group's filters" do
|
68
|
+
filters = []
|
69
|
+
RSpec.configure do |c|
|
70
|
+
c.before(:all, :one => 1) { filters << "before all in config"}
|
71
|
+
c.around(:each, :two => 2, :one => 1) {|example| filters << "around each in config"; example.run}
|
72
|
+
c.before(:each, :one => 1, :two => 2) { filters << "before each in config"}
|
73
|
+
c.after(:each, :one => 1, :two => 2, :three => 3) { filters << "after each in config"}
|
74
|
+
c.after(:all, :one => 1, :three => 3) { filters << "after all in config"}
|
75
|
+
end
|
76
|
+
group = ExampleGroup.describe(:one => 1, :two => 2, :three => 3)
|
77
|
+
group.example("example") {}
|
78
|
+
group.run_all
|
79
|
+
filters.should == [
|
80
|
+
"before all in config",
|
81
|
+
"around each in config",
|
82
|
+
"before each in config",
|
83
|
+
"after each in config",
|
84
|
+
"after all in config"
|
85
|
+
]
|
86
|
+
end
|
87
|
+
|
88
|
+
it "should not be ran if some hook filters don't match the group's filters" do
|
89
|
+
filters = []
|
90
|
+
RSpec.configure do |c|
|
91
|
+
c.before(:all, :one => 1, :four => 4) { filters << "before all in config"}
|
92
|
+
c.around(:each, :two => 2, :four => 4) {|example| filters << "around each in config"; example.run}
|
93
|
+
c.before(:each, :one => 1, :two => 2, :four => 4) { filters << "before each in config"}
|
94
|
+
c.after(:each, :one => 1, :two => 2, :three => 3, :four => 4) { filters << "after each in config"}
|
95
|
+
c.after(:all, :one => 1, :three => 3, :four => 4) { filters << "after all in config"}
|
96
|
+
end
|
97
|
+
group = ExampleGroup.describe(:one => 1, :two => 2, :three => 3)
|
98
|
+
group.example("example") {}
|
99
|
+
group.run_all
|
100
|
+
filters.should == []
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
module RSpec::Core
|
4
|
+
describe Reporter do
|
5
|
+
context "given one formatter" do
|
6
|
+
it "passes messages to that formatter" do
|
7
|
+
formatter = double("formatter")
|
8
|
+
example = double("example")
|
9
|
+
reporter = Reporter.new(formatter)
|
10
|
+
|
11
|
+
formatter.should_receive(:example_started).
|
12
|
+
with(example)
|
13
|
+
|
14
|
+
reporter.example_started(example)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
context "given multiple formatters" do
|
19
|
+
it "passes messages to all formatters" do
|
20
|
+
formatters = [double("formatter"), double("formatter")]
|
21
|
+
example = double("example")
|
22
|
+
reporter = Reporter.new(*formatters)
|
23
|
+
|
24
|
+
formatters.each do |formatter|
|
25
|
+
formatter.
|
26
|
+
should_receive(:example_started).
|
27
|
+
with(example)
|
28
|
+
end
|
29
|
+
|
30
|
+
reporter.example_started(example)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -68,7 +68,7 @@ module RSpec::Core
|
|
68
68
|
end
|
69
69
|
group = ExampleGroup.describe('fake group')
|
70
70
|
shared_group = group.it_should_behave_like("thing")
|
71
|
-
shared_group.public_instance_methods.should include("foo")
|
71
|
+
shared_group.public_instance_methods.map{|m| m.to_s}.should include("foo")
|
72
72
|
end
|
73
73
|
|
74
74
|
it "adds shared class methods to nested group" do
|
@@ -77,7 +77,27 @@ module RSpec::Core
|
|
77
77
|
end
|
78
78
|
group = ExampleGroup.describe('fake group')
|
79
79
|
shared_group = group.it_should_behave_like("thing")
|
80
|
-
shared_group.methods.should include("foo")
|
80
|
+
shared_group.methods.map{|m| m.to_s}.should include("foo")
|
81
|
+
end
|
82
|
+
|
83
|
+
context "given some parameters" do
|
84
|
+
it "passes the parameters to the shared example group" do
|
85
|
+
passed_params = {}
|
86
|
+
|
87
|
+
shared_examples_for("thing") do |param1, param2|
|
88
|
+
it("has access to the given parameters") do
|
89
|
+
passed_params[:param1] = param1
|
90
|
+
passed_params[:param2] = param2
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
group = ExampleGroup.describe("group") do
|
95
|
+
it_should_behave_like "thing", :value1, :value2
|
96
|
+
end
|
97
|
+
group.run_all
|
98
|
+
|
99
|
+
passed_params.should == { :param1 => :value1, :param2 => :value2 }
|
100
|
+
end
|
81
101
|
end
|
82
102
|
|
83
103
|
context "given a block" do
|
@@ -64,7 +64,9 @@ module RSpec::Core
|
|
64
64
|
end
|
65
65
|
|
66
66
|
it "finds matching groups when filtering on arbitrary metadata with a number" do
|
67
|
-
|
67
|
+
pending("discover why this example fails when the whole suite is run, but passes when just this group is run") do
|
68
|
+
@world.apply_inclusion_filters(@example_groups, :foo => 1 ).should == [@bg1]
|
69
|
+
end
|
68
70
|
end
|
69
71
|
|
70
72
|
it "finds matching groups when filtering on arbitrary metadata with an array" do
|
@@ -83,7 +85,7 @@ module RSpec::Core
|
|
83
85
|
|
84
86
|
describe "applying exclusion filters" do
|
85
87
|
|
86
|
-
it "
|
88
|
+
it "finds nothing if all describes match the exclusion filter" do
|
87
89
|
options = { :network_access => true }
|
88
90
|
|
89
91
|
group1 = ExampleGroup.describe(Bar, "find group-1", options) do
|
@@ -102,7 +104,7 @@ module RSpec::Core
|
|
102
104
|
|
103
105
|
end
|
104
106
|
|
105
|
-
it "
|
107
|
+
it "finds nothing if a regexp matches the exclusion filter" do
|
106
108
|
group = ExampleGroup.describe(Bar, "find group-1", :name => "exclude me with a regex", :another => "foo") do
|
107
109
|
it("foo") {}
|
108
110
|
it("bar") {}
|
@@ -137,23 +139,23 @@ module RSpec::Core
|
|
137
139
|
@group2.examples[1].metadata[:line_number] = @group2_example2_line
|
138
140
|
end
|
139
141
|
|
140
|
-
it "
|
142
|
+
it "returns nil if no example or group precedes the line" do
|
141
143
|
@world.preceding_declaration_line(@group1_line-1).should == nil
|
142
144
|
end
|
143
145
|
|
144
|
-
it "
|
146
|
+
it "returns the argument line number if a group starts on that line" do
|
145
147
|
@world.preceding_declaration_line(@group1_line).should == @group1_line
|
146
148
|
end
|
147
149
|
|
148
|
-
it "
|
150
|
+
it "returns the argument line number if an example starts on that line" do
|
149
151
|
@world.preceding_declaration_line(@group2_example1_line).should == @group2_example1_line
|
150
152
|
end
|
151
153
|
|
152
|
-
it "
|
154
|
+
it "returns line number of a group that immediately precedes the argument line" do
|
153
155
|
@world.preceding_declaration_line(@group2_line+1).should == @group2_line
|
154
156
|
end
|
155
157
|
|
156
|
-
it "
|
158
|
+
it "returns line number of an example that immediately precedes the argument line" do
|
157
159
|
@world.preceding_declaration_line(@group2_example1_line+1).should == @group2_example1_line
|
158
160
|
end
|
159
161
|
|
File without changes
|
data/spec/ruby_forker.rb
CHANGED
@@ -4,7 +4,7 @@ module RubyForker
|
|
4
4
|
# Forks a ruby interpreter with same type as ourself.
|
5
5
|
# jruby will fork jruby, ruby will fork ruby etc.
|
6
6
|
def ruby(args, stderr=nil)
|
7
|
-
config = ::
|
7
|
+
config = ::RbConfig::CONFIG
|
8
8
|
interpreter = File::join(config['bindir'], config['ruby_install_name']) + config['EXEEXT']
|
9
9
|
cmd = "#{interpreter} #{args}"
|
10
10
|
cmd << " 2> #{stderr}" unless stderr.nil?
|
data/spec/spec_helper.rb
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
# TODO (DC 2010-07-04) This next line is necessary when running 'rake spec'.
|
2
|
-
# Why doesn't the rspec-core ref in Gemfile handle this.
|
3
1
|
require 'rspec/core'
|
4
2
|
require 'autotest/rspec2'
|
5
3
|
|
@@ -62,6 +60,8 @@ RSpec.configure do |c|
|
|
62
60
|
case version.to_s
|
63
61
|
when "!jruby"
|
64
62
|
RUBY_ENGINE != "jruby"
|
63
|
+
when /^> (.*)/
|
64
|
+
!(RUBY_VERSION.to_s > $1)
|
65
65
|
else
|
66
66
|
!(RUBY_VERSION.to_s =~ /^#{version.to_s}/)
|
67
67
|
end
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 62196421
|
5
4
|
prerelease: true
|
6
5
|
segments:
|
7
6
|
- 2
|
8
7
|
- 0
|
9
8
|
- 0
|
10
9
|
- beta
|
11
|
-
-
|
12
|
-
version: 2.0.0.beta.
|
10
|
+
- 20
|
11
|
+
version: 2.0.0.beta.20
|
13
12
|
platform: ruby
|
14
13
|
authors:
|
15
14
|
- Chad Humphries
|
@@ -18,77 +17,73 @@ autorequire:
|
|
18
17
|
bindir: bin
|
19
18
|
cert_chain: []
|
20
19
|
|
21
|
-
date: 2010-
|
20
|
+
date: 2010-08-24 00:00:00 -05:00
|
22
21
|
default_executable: rspec
|
23
22
|
dependencies:
|
24
23
|
- !ruby/object:Gem::Dependency
|
25
|
-
type: :development
|
26
|
-
prerelease: false
|
27
24
|
name: rspec-expectations
|
28
|
-
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
29
26
|
none: false
|
30
27
|
requirements:
|
31
28
|
- - ">="
|
32
29
|
- !ruby/object:Gem::Version
|
33
|
-
hash: 62196421
|
34
30
|
segments:
|
35
31
|
- 2
|
36
32
|
- 0
|
37
33
|
- 0
|
38
34
|
- beta
|
39
|
-
-
|
40
|
-
version: 2.0.0.beta.
|
41
|
-
requirement: *id001
|
42
|
-
- !ruby/object:Gem::Dependency
|
35
|
+
- 20
|
36
|
+
version: 2.0.0.beta.20
|
43
37
|
type: :development
|
44
38
|
prerelease: false
|
39
|
+
version_requirements: *id001
|
40
|
+
- !ruby/object:Gem::Dependency
|
45
41
|
name: rspec-mocks
|
46
|
-
|
42
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
47
43
|
none: false
|
48
44
|
requirements:
|
49
45
|
- - ">="
|
50
46
|
- !ruby/object:Gem::Version
|
51
|
-
hash: 62196421
|
52
47
|
segments:
|
53
48
|
- 2
|
54
49
|
- 0
|
55
50
|
- 0
|
56
51
|
- beta
|
57
|
-
-
|
58
|
-
version: 2.0.0.beta.
|
59
|
-
requirement: *id002
|
60
|
-
- !ruby/object:Gem::Dependency
|
52
|
+
- 20
|
53
|
+
version: 2.0.0.beta.20
|
61
54
|
type: :development
|
62
55
|
prerelease: false
|
56
|
+
version_requirements: *id002
|
57
|
+
- !ruby/object:Gem::Dependency
|
63
58
|
name: cucumber
|
64
|
-
|
59
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
65
60
|
none: false
|
66
61
|
requirements:
|
67
62
|
- - ">="
|
68
63
|
- !ruby/object:Gem::Version
|
69
|
-
hash: 13
|
70
64
|
segments:
|
71
65
|
- 0
|
72
66
|
- 5
|
73
67
|
- 3
|
74
68
|
version: 0.5.3
|
75
|
-
requirement: *id003
|
76
|
-
- !ruby/object:Gem::Dependency
|
77
69
|
type: :development
|
78
70
|
prerelease: false
|
71
|
+
version_requirements: *id003
|
72
|
+
- !ruby/object:Gem::Dependency
|
79
73
|
name: autotest
|
80
|
-
|
74
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
81
75
|
none: false
|
82
76
|
requirements:
|
83
77
|
- - ">="
|
84
78
|
- !ruby/object:Gem::Version
|
85
|
-
hash: 37
|
86
79
|
segments:
|
87
80
|
- 4
|
88
81
|
- 2
|
89
82
|
- 9
|
90
83
|
version: 4.2.9
|
91
|
-
|
84
|
+
type: :development
|
85
|
+
prerelease: false
|
86
|
+
version_requirements: *id004
|
92
87
|
description: RSpec runner and example groups
|
93
88
|
email: dchelimsky@gmail.com;chad.humphries@gmail.com
|
94
89
|
executables:
|
@@ -122,6 +117,7 @@ files:
|
|
122
117
|
- features/example_groups/describe_aliases.feature
|
123
118
|
- features/example_groups/nested_groups.feature
|
124
119
|
- features/example_groups/shared_example_group.feature
|
120
|
+
- features/filtering/exclusion_filters.feature
|
125
121
|
- features/filtering/inclusion_filters.feature
|
126
122
|
- features/formatters/custom_formatter.feature
|
127
123
|
- features/hooks/around_hooks.feature
|
@@ -133,6 +129,7 @@ files:
|
|
133
129
|
- features/mock_framework_integration/use_rr.feature
|
134
130
|
- features/mock_framework_integration/use_rspec.feature
|
135
131
|
- features/pending/pending_examples.feature
|
132
|
+
- features/spec_files/arbitrary_file_suffix.feature
|
136
133
|
- features/subject/attribute_of_subject.feature
|
137
134
|
- features/subject/explicit_subject.feature
|
138
135
|
- features/subject/implicit_subject.feature
|
@@ -151,6 +148,11 @@ files:
|
|
151
148
|
- lib/rspec/core/errors.rb
|
152
149
|
- lib/rspec/core/example.rb
|
153
150
|
- lib/rspec/core/example_group.rb
|
151
|
+
- lib/rspec/core/extensions.rb
|
152
|
+
- lib/rspec/core/extensions/instance_eval_with_args.rb
|
153
|
+
- lib/rspec/core/extensions/kernel.rb
|
154
|
+
- lib/rspec/core/extensions/module_eval_with_args.rb
|
155
|
+
- lib/rspec/core/extensions/object.rb
|
154
156
|
- lib/rspec/core/formatters.rb
|
155
157
|
- lib/rspec/core/formatters/base_formatter.rb
|
156
158
|
- lib/rspec/core/formatters/base_text_formatter.rb
|
@@ -161,7 +163,6 @@ files:
|
|
161
163
|
- lib/rspec/core/formatters/snippet_extractor.rb
|
162
164
|
- lib/rspec/core/formatters/text_mate_formatter.rb
|
163
165
|
- lib/rspec/core/hooks.rb
|
164
|
-
- lib/rspec/core/kernel_extensions.rb
|
165
166
|
- lib/rspec/core/let.rb
|
166
167
|
- lib/rspec/core/load_path.rb
|
167
168
|
- lib/rspec/core/metadata.rb
|
@@ -170,10 +171,10 @@ files:
|
|
170
171
|
- lib/rspec/core/mocking/with_mocha.rb
|
171
172
|
- lib/rspec/core/mocking/with_rr.rb
|
172
173
|
- lib/rspec/core/mocking/with_rspec.rb
|
173
|
-
- lib/rspec/core/object_extensions.rb
|
174
174
|
- lib/rspec/core/option_parser.rb
|
175
175
|
- lib/rspec/core/pending.rb
|
176
176
|
- lib/rspec/core/rake_task.rb
|
177
|
+
- lib/rspec/core/reporter.rb
|
177
178
|
- lib/rspec/core/ruby_project.rb
|
178
179
|
- lib/rspec/core/runner.rb
|
179
180
|
- lib/rspec/core/shared_example_group.rb
|
@@ -191,7 +192,6 @@ files:
|
|
191
192
|
- spec/rspec/core/command_line_spec_output.txt
|
192
193
|
- spec/rspec/core/configuration_options_spec.rb
|
193
194
|
- spec/rspec/core/configuration_spec.rb
|
194
|
-
- spec/rspec/core/core_spec.rb
|
195
195
|
- spec/rspec/core/deprecations_spec.rb
|
196
196
|
- spec/rspec/core/drb_command_line_spec.rb
|
197
197
|
- spec/rspec/core/example_group_spec.rb
|
@@ -200,21 +200,25 @@ files:
|
|
200
200
|
- spec/rspec/core/formatters/base_text_formatter_spec.rb
|
201
201
|
- spec/rspec/core/formatters/documentation_formatter_spec.rb
|
202
202
|
- spec/rspec/core/formatters/helpers_spec.rb
|
203
|
+
- spec/rspec/core/formatters/html_formatted-1.8.6.html
|
203
204
|
- spec/rspec/core/formatters/html_formatted-1.8.7.html
|
204
205
|
- spec/rspec/core/formatters/html_formatted-1.9.1.html
|
205
206
|
- spec/rspec/core/formatters/html_formatted-1.9.2.html
|
206
207
|
- spec/rspec/core/formatters/html_formatter_spec.rb
|
207
208
|
- spec/rspec/core/formatters/progress_formatter_spec.rb
|
208
209
|
- spec/rspec/core/formatters/snippet_extractor_spec.rb
|
210
|
+
- spec/rspec/core/formatters/text_mate_formatted-1.8.6.html
|
209
211
|
- spec/rspec/core/formatters/text_mate_formatted-1.8.7.html
|
210
212
|
- spec/rspec/core/formatters/text_mate_formatted-1.9.2.html
|
211
213
|
- spec/rspec/core/formatters/text_mate_formatter_spec.rb
|
214
|
+
- spec/rspec/core/hooks_filtering_spec.rb
|
212
215
|
- spec/rspec/core/hooks_spec.rb
|
213
216
|
- spec/rspec/core/kernel_extensions_spec.rb
|
214
217
|
- spec/rspec/core/let_spec.rb
|
215
218
|
- spec/rspec/core/metadata_spec.rb
|
216
219
|
- spec/rspec/core/option_parser_spec.rb
|
217
220
|
- spec/rspec/core/pending_example_spec.rb
|
221
|
+
- spec/rspec/core/reporter_spec.rb
|
218
222
|
- spec/rspec/core/resources/a_bar.rb
|
219
223
|
- spec/rspec/core/resources/a_foo.rb
|
220
224
|
- spec/rspec/core/resources/a_spec.rb
|
@@ -226,6 +230,7 @@ files:
|
|
226
230
|
- spec/rspec/core/shared_example_group_spec.rb
|
227
231
|
- spec/rspec/core/subject_spec.rb
|
228
232
|
- spec/rspec/core/world_spec.rb
|
233
|
+
- spec/rspec/core_spec.rb
|
229
234
|
- spec/ruby_forker.rb
|
230
235
|
- spec/spec_helper.rb
|
231
236
|
- spec/support/matchers.rb
|
@@ -237,7 +242,7 @@ licenses: []
|
|
237
242
|
post_install_message: |
|
238
243
|
**************************************************
|
239
244
|
|
240
|
-
Thank you for installing rspec-core-2.0.0.beta.
|
245
|
+
Thank you for installing rspec-core-2.0.0.beta.20
|
241
246
|
|
242
247
|
Please be sure to look at Upgrade.markdown to see what might have changed
|
243
248
|
since the last release.
|
@@ -253,7 +258,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
253
258
|
requirements:
|
254
259
|
- - ">="
|
255
260
|
- !ruby/object:Gem::Version
|
256
|
-
hash:
|
261
|
+
hash: 2409233912150691579
|
257
262
|
segments:
|
258
263
|
- 0
|
259
264
|
version: "0"
|
@@ -262,7 +267,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
262
267
|
requirements:
|
263
268
|
- - ">"
|
264
269
|
- !ruby/object:Gem::Version
|
265
|
-
hash: 25
|
266
270
|
segments:
|
267
271
|
- 1
|
268
272
|
- 3
|
@@ -274,7 +278,7 @@ rubyforge_project: rspec
|
|
274
278
|
rubygems_version: 1.3.7
|
275
279
|
signing_key:
|
276
280
|
specification_version: 3
|
277
|
-
summary: rspec-core-2.0.0.beta.
|
281
|
+
summary: rspec-core-2.0.0.beta.20
|
278
282
|
test_files:
|
279
283
|
- spec/autotest/failed_results_re_spec.rb
|
280
284
|
- spec/autotest/rspec_spec.rb
|
@@ -282,7 +286,6 @@ test_files:
|
|
282
286
|
- spec/rspec/core/command_line_spec.rb
|
283
287
|
- spec/rspec/core/configuration_options_spec.rb
|
284
288
|
- spec/rspec/core/configuration_spec.rb
|
285
|
-
- spec/rspec/core/core_spec.rb
|
286
289
|
- spec/rspec/core/deprecations_spec.rb
|
287
290
|
- spec/rspec/core/drb_command_line_spec.rb
|
288
291
|
- spec/rspec/core/example_group_spec.rb
|
@@ -295,12 +298,14 @@ test_files:
|
|
295
298
|
- spec/rspec/core/formatters/progress_formatter_spec.rb
|
296
299
|
- spec/rspec/core/formatters/snippet_extractor_spec.rb
|
297
300
|
- spec/rspec/core/formatters/text_mate_formatter_spec.rb
|
301
|
+
- spec/rspec/core/hooks_filtering_spec.rb
|
298
302
|
- spec/rspec/core/hooks_spec.rb
|
299
303
|
- spec/rspec/core/kernel_extensions_spec.rb
|
300
304
|
- spec/rspec/core/let_spec.rb
|
301
305
|
- spec/rspec/core/metadata_spec.rb
|
302
306
|
- spec/rspec/core/option_parser_spec.rb
|
303
307
|
- spec/rspec/core/pending_example_spec.rb
|
308
|
+
- spec/rspec/core/reporter_spec.rb
|
304
309
|
- spec/rspec/core/resources/a_bar.rb
|
305
310
|
- spec/rspec/core/resources/a_foo.rb
|
306
311
|
- spec/rspec/core/resources/a_spec.rb
|
@@ -312,6 +317,7 @@ test_files:
|
|
312
317
|
- spec/rspec/core/shared_example_group_spec.rb
|
313
318
|
- spec/rspec/core/subject_spec.rb
|
314
319
|
- spec/rspec/core/world_spec.rb
|
320
|
+
- spec/rspec/core_spec.rb
|
315
321
|
- spec/ruby_forker.rb
|
316
322
|
- spec/spec_helper.rb
|
317
323
|
- spec/support/matchers.rb
|