dchelimsky-rspec 1.1.11 → 1.1.11.1
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/.autotest +4 -0
- data/History.txt +19 -3
- data/Manifest.txt +6 -1
- data/examples/failing/README.txt +7 -0
- data/examples/failing/diffing_spec.rb +36 -0
- data/examples/failing/failing_autogenerated_docstrings_example.rb +19 -0
- data/examples/failing/failure_in_setup.rb +10 -0
- data/examples/failing/failure_in_teardown.rb +10 -0
- data/examples/failing/mocking_example.rb +40 -0
- data/examples/failing/mocking_with_flexmock.rb +26 -0
- data/examples/failing/mocking_with_mocha.rb +25 -0
- data/examples/failing/mocking_with_rr.rb +27 -0
- data/examples/failing/partial_mock_example.rb +20 -0
- data/examples/failing/predicate_example.rb +34 -0
- data/examples/failing/raising_example.rb +47 -0
- data/examples/failing/spec_helper.rb +3 -0
- data/examples/failing/syntax_error_example.rb +7 -0
- data/examples/failing/team_spec.rb +44 -0
- data/examples/failing/timeout_behaviour.rb +7 -0
- data/examples/passing/custom_formatter.rb +1 -1
- data/examples/passing/simple_matcher_example.rb +31 -0
- data/lib/autotest/rspec.rb +1 -1
- data/lib/spec/dsl/main.rb +82 -0
- data/lib/spec/dsl.rb +1 -0
- data/lib/spec/example/before_and_after_hooks.rb +2 -1
- data/lib/spec/example/configuration.rb +1 -1
- data/lib/spec/example/example_group.rb +1 -0
- data/lib/spec/example/example_group_factory.rb +2 -1
- data/lib/spec/example/example_group_methods.rb +40 -25
- data/lib/spec/example/example_methods.rb +19 -8
- data/lib/spec/example.rb +15 -17
- data/lib/spec/expectations/handler.rb +23 -28
- data/lib/spec/expectations/wrap_expectation.rb +56 -0
- data/lib/spec/expectations.rb +22 -18
- data/lib/spec/extensions.rb +0 -1
- data/lib/spec/interop/test/unit/testcase.rb +19 -17
- data/lib/spec/matchers/be_close.rb +6 -22
- data/lib/spec/matchers/eql.rb +7 -25
- data/lib/spec/matchers/equal.rb +6 -24
- data/lib/spec/matchers/errors.rb +5 -0
- data/lib/spec/matchers/exist.rb +8 -14
- data/lib/spec/matchers/generated_descriptions.rb +48 -0
- data/lib/spec/matchers/has.rb +12 -28
- data/lib/spec/matchers/include.rb +12 -9
- data/lib/spec/matchers/match.rb +8 -27
- data/lib/spec/matchers/method_missing.rb +9 -0
- data/lib/spec/matchers/operator_matcher.rb +23 -46
- data/lib/spec/matchers/raise_error.rb +4 -8
- data/lib/spec/matchers/respond_to.rb +2 -1
- data/lib/spec/matchers/throw_symbol.rb +9 -3
- data/lib/spec/mocks/message_expectation.rb +0 -5
- data/lib/spec/mocks/proxy.rb +12 -10
- data/lib/spec/rake/spectask.rb +4 -6
- data/lib/spec/runner/class_and_arguments_parser.rb +7 -9
- data/lib/spec/runner/command_line.rb +6 -8
- data/lib/spec/runner/formatter/base_text_formatter.rb +3 -2
- data/lib/spec/runner/option_parser.rb +4 -6
- data/lib/spec/runner/spec_parser.rb +5 -5
- data/lib/spec/runner.rb +37 -39
- data/lib/spec/story/runner/story_runner.rb +10 -6
- data/lib/spec/story/runner.rb +40 -42
- data/lib/spec/story/world.rb +66 -70
- data/lib/spec/version.rb +3 -1
- data/lib/spec.rb +21 -19
- data/rspec.gemspec +15 -6
- data/spec/autotest/autotest_helper.rb +2 -2
- data/spec/autotest/discover_spec.rb +4 -15
- data/spec/autotest/failed_results_re_spec.rb +24 -0
- data/spec/autotest/rspec_spec.rb +0 -37
- data/spec/spec/dsl/main_spec.rb +65 -0
- data/spec/spec/example/example_group_class_definition_spec.rb +6 -2
- data/spec/spec/example/example_group_factory_spec.rb +2 -1
- data/spec/spec/example/example_group_methods_spec.rb +138 -141
- data/spec/spec/example/example_group_spec.rb +3 -5
- data/spec/spec/example/example_methods_spec.rb +60 -23
- data/spec/spec/expectations/wrap_expectation_spec.rb +30 -0
- data/spec/spec/interop/test/unit/spec_spec.rb +1 -5
- data/spec/spec/interop/test/unit/test_unit_spec_helper.rb +4 -0
- data/spec/spec/matchers/be_close_spec.rb +12 -10
- data/spec/spec/matchers/description_generation_spec.rb +1 -1
- data/spec/spec/matchers/eql_spec.rb +7 -6
- data/spec/spec/matchers/equal_spec.rb +7 -6
- data/spec/spec/matchers/has_spec.rb +1 -1
- data/spec/spec/matchers/have_spec.rb +23 -18
- data/spec/spec/matchers/include_spec.rb +24 -0
- data/spec/spec/matchers/matcher_methods_spec.rb +1 -13
- data/spec/spec/matchers/throw_symbol_spec.rb +3 -3
- data/spec/spec/mocks/bug_report_11545_spec.rb +4 -5
- data/spec/spec/mocks/bug_report_496.rb +11 -9
- data/spec/spec/mocks/bug_report_600_spec.rb +22 -0
- data/spec/spec/runner/formatter/nested_text_formatter_spec.rb +1 -1
- data/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +4 -14
- data/spec/spec/runner/formatter/specdoc_formatter_spec.rb +1 -1
- data/spec/spec/runner/options_spec.rb +1 -1
- data/spec/spec/runner/spec_parser_spec.rb +76 -80
- data/spec/spec_helper.rb +4 -0
- data/stories/example_groups/autogenerated_docstrings +4 -4
- data/stories/interop/test_but_not_test_unit +14 -0
- data/stories/resources/helpers/story_helper.rb +1 -1
- data/stories/resources/test/spec_including_test_but_not_unit.rb +11 -0
- data/story_server/prototype/javascripts/prototype.js +1 -1
- metadata +34 -53
- data/lib/spec/extensions/metaclass.rb +0 -7
@@ -1,85 +1,81 @@
|
|
1
1
|
require File.dirname(__FILE__) + '/../../spec_helper.rb'
|
2
2
|
|
3
3
|
describe "SpecParser" do
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
4
|
+
with_sandboxed_options do
|
5
|
+
attr_reader :parser, :file
|
6
|
+
|
7
|
+
before do
|
8
|
+
@parser = Spec::Runner::SpecParser.new
|
9
|
+
@file = "#{File.dirname(__FILE__)}/spec_parser/spec_parser_fixture.rb"
|
10
|
+
load file
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should find spec name for 'specify' at same line" do
|
14
|
+
parser.spec_name_for(file, 5).should == "c 1"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should find spec name for 'specify' at end of spec line" do
|
18
|
+
parser.spec_name_for(file, 6).should == "c 1"
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should find context for 'context' above all specs" do
|
22
|
+
parser.spec_name_for(file, 4).should == "c"
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should find spec name for 'it' at same line" do
|
26
|
+
parser.spec_name_for(file, 15).should == "d 3"
|
27
|
+
end
|
28
|
+
|
29
|
+
it "should find spec name for 'it' at end of spec line" do
|
30
|
+
parser.spec_name_for(file, 16).should == "d 3"
|
31
|
+
end
|
32
|
+
|
33
|
+
it "should find context for 'describe' above all specs" do
|
34
|
+
parser.spec_name_for(file, 14).should == "d"
|
35
|
+
end
|
36
|
+
|
37
|
+
it "should find nearest example name between examples" do
|
38
|
+
parser.spec_name_for(file, 7).should == "c 1"
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should find nothing outside a context" do
|
42
|
+
parser.spec_name_for(file, 2).should be_nil
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should find context name for type" do
|
46
|
+
parser.spec_name_for(file, 26).should == "SpecParserSubject"
|
47
|
+
end
|
48
|
+
|
49
|
+
it "should find context and spec name for type" do
|
50
|
+
parser.spec_name_for(file, 28).should == "SpecParserSubject 5"
|
51
|
+
end
|
52
|
+
|
53
|
+
it "should find context and description for type" do
|
54
|
+
parser.spec_name_for(file, 33).should == "SpecParserSubject described"
|
55
|
+
end
|
56
|
+
|
57
|
+
it "should find context and description and example for type" do
|
58
|
+
parser.spec_name_for(file, 36).should == "SpecParserSubject described 6"
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should find context and description for type with modifications" do
|
62
|
+
parser.spec_name_for(file, 40).should == "SpecParserSubject described"
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should find context and described and example for type with modifications" do
|
66
|
+
parser.spec_name_for(file, 43).should == "SpecParserSubject described 7"
|
67
|
+
end
|
68
|
+
|
69
|
+
it "should find example group" do
|
70
|
+
parser.spec_name_for(file, 47).should == "described"
|
71
|
+
end
|
72
|
+
|
73
|
+
it "should find example" do
|
74
|
+
parser.spec_name_for(file, 50).should == "described 8"
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should find nested example" do
|
78
|
+
parser.spec_name_for(file, 63).should == "e f 11"
|
79
|
+
end
|
11
80
|
end
|
12
|
-
|
13
|
-
after(:each) do
|
14
|
-
Spec::Runner.use @original_rspec_options
|
15
|
-
end
|
16
|
-
|
17
|
-
it "should find spec name for 'specify' at same line" do
|
18
|
-
parser.spec_name_for(file, 5).should == "c 1"
|
19
|
-
end
|
20
|
-
|
21
|
-
it "should find spec name for 'specify' at end of spec line" do
|
22
|
-
parser.spec_name_for(file, 6).should == "c 1"
|
23
|
-
end
|
24
|
-
|
25
|
-
it "should find context for 'context' above all specs" do
|
26
|
-
parser.spec_name_for(file, 4).should == "c"
|
27
|
-
end
|
28
|
-
|
29
|
-
it "should find spec name for 'it' at same line" do
|
30
|
-
parser.spec_name_for(file, 15).should == "d 3"
|
31
|
-
end
|
32
|
-
|
33
|
-
it "should find spec name for 'it' at end of spec line" do
|
34
|
-
parser.spec_name_for(file, 16).should == "d 3"
|
35
|
-
end
|
36
|
-
|
37
|
-
it "should find context for 'describe' above all specs" do
|
38
|
-
parser.spec_name_for(file, 14).should == "d"
|
39
|
-
end
|
40
|
-
|
41
|
-
it "should find nearest example name between examples" do
|
42
|
-
parser.spec_name_for(file, 7).should == "c 1"
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should find nothing outside a context" do
|
46
|
-
parser.spec_name_for(file, 2).should be_nil
|
47
|
-
end
|
48
|
-
|
49
|
-
it "should find context name for type" do
|
50
|
-
parser.spec_name_for(file, 26).should == "SpecParserSubject"
|
51
|
-
end
|
52
|
-
|
53
|
-
it "should find context and spec name for type" do
|
54
|
-
parser.spec_name_for(file, 28).should == "SpecParserSubject 5"
|
55
|
-
end
|
56
|
-
|
57
|
-
it "should find context and description for type" do
|
58
|
-
parser.spec_name_for(file, 33).should == "SpecParserSubject described"
|
59
|
-
end
|
60
|
-
|
61
|
-
it "should find context and description and example for type" do
|
62
|
-
parser.spec_name_for(file, 36).should == "SpecParserSubject described 6"
|
63
|
-
end
|
64
|
-
|
65
|
-
it "should find context and description for type with modifications" do
|
66
|
-
parser.spec_name_for(file, 40).should == "SpecParserSubject described"
|
67
|
-
end
|
68
|
-
|
69
|
-
it "should find context and described and example for type with modifications" do
|
70
|
-
parser.spec_name_for(file, 43).should == "SpecParserSubject described 7"
|
71
|
-
end
|
72
|
-
|
73
|
-
it "should find example group" do
|
74
|
-
parser.spec_name_for(file, 47).should == "described"
|
75
|
-
end
|
76
|
-
|
77
|
-
it "should find example" do
|
78
|
-
parser.spec_name_for(file, 50).should == "described 8"
|
79
|
-
end
|
80
|
-
|
81
|
-
it "should find nested example" do
|
82
|
-
parser.spec_name_for(file, 63).should == "e f 11"
|
83
|
-
end
|
84
|
-
|
85
81
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -12,7 +12,7 @@ Story: autogenerated docstrings
|
|
12
12
|
Then the stdout should match /should equal 5/
|
13
13
|
And the stdout should match /should be < 5/
|
14
14
|
And the stdout should match /should include "a"/
|
15
|
-
And the stdout should match /should respond to
|
15
|
+
And the stdout should match /should respond to \[:size\]/
|
16
16
|
|
17
17
|
Scenario: run failing examples with ruby
|
18
18
|
Given the file ../../examples/failing/failing_autogenerated_docstrings_example.rb
|
@@ -22,7 +22,7 @@ Story: autogenerated docstrings
|
|
22
22
|
Then the stdout should match /should equal 2/
|
23
23
|
And the stdout should match /should be > 5/
|
24
24
|
And the stdout should match /should include "b"/
|
25
|
-
And the stdout should match /should not respond to
|
25
|
+
And the stdout should match /should not respond to \[:size\]/
|
26
26
|
|
27
27
|
Scenario: run passing examples with spec
|
28
28
|
Given the file ../../examples/passing/autogenerated_docstrings_example.rb
|
@@ -32,7 +32,7 @@ Story: autogenerated docstrings
|
|
32
32
|
Then the stdout should match /should equal 5/
|
33
33
|
And the stdout should match /should be < 5/
|
34
34
|
And the stdout should match /should include "a"/
|
35
|
-
And the stdout should match /should respond to
|
35
|
+
And the stdout should match /should respond to \[:size\]/
|
36
36
|
|
37
37
|
Scenario: run failing examples with spec
|
38
38
|
Given the file ../../examples/failing/failing_autogenerated_docstrings_example.rb
|
@@ -42,4 +42,4 @@ Story: autogenerated docstrings
|
|
42
42
|
Then the stdout should match /should equal 2/
|
43
43
|
And the stdout should match /should be > 5/
|
44
44
|
And the stdout should match /should include "b"/
|
45
|
-
And the stdout should match /should not respond to
|
45
|
+
And the stdout should match /should not respond to \[:size\]/
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Story: Test is defined, but not Test::Unit
|
2
|
+
|
3
|
+
As an RSpec user who has my own library named Test (but not Test::Unit)
|
4
|
+
I want to run examples without getting Test::Unit NameErrors
|
5
|
+
|
6
|
+
Scenario: Run with ruby
|
7
|
+
Given the file test/spec_including_test_but_not_unit.rb
|
8
|
+
When I run it with the ruby interpreter
|
9
|
+
Then the stderr should not match "Test::Unit"
|
10
|
+
|
11
|
+
Scenario: Run with spec
|
12
|
+
Given the file test/spec_including_test_but_not_unit.rb
|
13
|
+
When I run it with the spec script
|
14
|
+
Then the stderr should not match "Test::Unit"
|
@@ -1242,7 +1242,7 @@ Ajax.Request = Class.create(Ajax.Base, {
|
|
1242
1242
|
this.setRequestHeaders();
|
1243
1243
|
|
1244
1244
|
this.body = this.method == 'post' ? (this.options.postBody || params) : null;
|
1245
|
-
this.transport.
|
1245
|
+
this.transport.__send__(this.body);
|
1246
1246
|
|
1247
1247
|
/* Force Firefox to handle ready state 4 for synchronous requests */
|
1248
1248
|
if (!this.options.asynchronous && this.transport.overrideMimeType)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dchelimsky-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.11
|
4
|
+
version: 1.1.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- RSpec Development Team
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-11-24 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -27,14 +27,13 @@ extra_rdoc_files:
|
|
27
27
|
- Manifest.txt
|
28
28
|
- README.txt
|
29
29
|
- TODO.txt
|
30
|
+
- examples/failing/README.txt
|
30
31
|
- examples/passing/priority.txt
|
31
|
-
- examples/stories/game-of-life/README.txt
|
32
|
-
- examples/stories/game-of-life/behaviour/stories/stories.txt
|
33
|
-
- failing_examples/README.txt
|
34
32
|
- spec/spec/runner/empty_file.txt
|
35
33
|
- spec/spec/runner/examples.txt
|
36
34
|
- spec/spec/runner/failed.txt
|
37
35
|
files:
|
36
|
+
- .autotest
|
38
37
|
- History.txt
|
39
38
|
- License.txt
|
40
39
|
- Manifest.txt
|
@@ -43,6 +42,22 @@ files:
|
|
43
42
|
- TODO.txt
|
44
43
|
- bin/autospec
|
45
44
|
- bin/spec
|
45
|
+
- examples/failing/README.txt
|
46
|
+
- examples/failing/diffing_spec.rb
|
47
|
+
- examples/failing/failing_autogenerated_docstrings_example.rb
|
48
|
+
- examples/failing/failure_in_setup.rb
|
49
|
+
- examples/failing/failure_in_teardown.rb
|
50
|
+
- examples/failing/mocking_example.rb
|
51
|
+
- examples/failing/mocking_with_flexmock.rb
|
52
|
+
- examples/failing/mocking_with_mocha.rb
|
53
|
+
- examples/failing/mocking_with_rr.rb
|
54
|
+
- examples/failing/partial_mock_example.rb
|
55
|
+
- examples/failing/predicate_example.rb
|
56
|
+
- examples/failing/raising_example.rb
|
57
|
+
- examples/failing/spec_helper.rb
|
58
|
+
- examples/failing/syntax_error_example.rb
|
59
|
+
- examples/failing/team_spec.rb
|
60
|
+
- examples/failing/timeout_behaviour.rb
|
46
61
|
- examples/passing/autogenerated_docstrings_example.rb
|
47
62
|
- examples/passing/before_and_after_example.rb
|
48
63
|
- examples/passing/behave_as_example.rb
|
@@ -65,55 +80,13 @@ files:
|
|
65
80
|
- examples/passing/priority.txt
|
66
81
|
- examples/passing/shared_example_group_example.rb
|
67
82
|
- examples/passing/shared_stack_examples.rb
|
83
|
+
- examples/passing/simple_matcher_example.rb
|
68
84
|
- examples/passing/spec_helper.rb
|
69
85
|
- examples/passing/stack.rb
|
70
86
|
- examples/passing/stack_spec.rb
|
71
87
|
- examples/passing/stack_spec_with_nested_example_groups.rb
|
72
88
|
- examples/passing/stubbing_example.rb
|
73
89
|
- examples/passing/yielding_example.rb
|
74
|
-
- examples/stories/adder.rb
|
75
|
-
- examples/stories/addition
|
76
|
-
- examples/stories/addition.rb
|
77
|
-
- examples/stories/calculator.rb
|
78
|
-
- examples/stories/game-of-life/.loadpath
|
79
|
-
- examples/stories/game-of-life/README.txt
|
80
|
-
- examples/stories/game-of-life/behaviour/everything.rb
|
81
|
-
- examples/stories/game-of-life/behaviour/examples/examples.rb
|
82
|
-
- examples/stories/game-of-life/behaviour/examples/game_behaviour.rb
|
83
|
-
- examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb
|
84
|
-
- examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story
|
85
|
-
- examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story
|
86
|
-
- examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story
|
87
|
-
- examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story
|
88
|
-
- examples/stories/game-of-life/behaviour/stories/ICanKillACell.story
|
89
|
-
- examples/stories/game-of-life/behaviour/stories/TheGridWraps.story
|
90
|
-
- examples/stories/game-of-life/behaviour/stories/create_a_cell.rb
|
91
|
-
- examples/stories/game-of-life/behaviour/stories/helper.rb
|
92
|
-
- examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb
|
93
|
-
- examples/stories/game-of-life/behaviour/stories/steps.rb
|
94
|
-
- examples/stories/game-of-life/behaviour/stories/stories.rb
|
95
|
-
- examples/stories/game-of-life/behaviour/stories/stories.txt
|
96
|
-
- examples/stories/game-of-life/life.rb
|
97
|
-
- examples/stories/game-of-life/life/game.rb
|
98
|
-
- examples/stories/game-of-life/life/grid.rb
|
99
|
-
- examples/stories/helper.rb
|
100
|
-
- examples/stories/steps/addition_steps.rb
|
101
|
-
- failing_examples/README.txt
|
102
|
-
- failing_examples/diffing_spec.rb
|
103
|
-
- failing_examples/failing_autogenerated_docstrings_example.rb
|
104
|
-
- failing_examples/failure_in_setup.rb
|
105
|
-
- failing_examples/failure_in_teardown.rb
|
106
|
-
- failing_examples/mocking_example.rb
|
107
|
-
- failing_examples/mocking_with_flexmock.rb
|
108
|
-
- failing_examples/mocking_with_mocha.rb
|
109
|
-
- failing_examples/mocking_with_rr.rb
|
110
|
-
- failing_examples/partial_mock_example.rb
|
111
|
-
- failing_examples/predicate_example.rb
|
112
|
-
- failing_examples/raising_example.rb
|
113
|
-
- failing_examples/spec_helper.rb
|
114
|
-
- failing_examples/syntax_error_example.rb
|
115
|
-
- failing_examples/team_spec.rb
|
116
|
-
- failing_examples/timeout_behaviour.rb
|
117
90
|
- init.rb
|
118
91
|
- lib/autotest/discover.rb
|
119
92
|
- lib/autotest/rspec.rb
|
@@ -122,6 +95,8 @@ files:
|
|
122
95
|
- lib/spec/adapters/ruby_engine.rb
|
123
96
|
- lib/spec/adapters/ruby_engine/mri.rb
|
124
97
|
- lib/spec/adapters/ruby_engine/rubinius.rb
|
98
|
+
- lib/spec/dsl.rb
|
99
|
+
- lib/spec/dsl/main.rb
|
125
100
|
- lib/spec/example.rb
|
126
101
|
- lib/spec/example/before_and_after_hooks.rb
|
127
102
|
- lib/spec/example/configuration.rb
|
@@ -141,11 +116,9 @@ files:
|
|
141
116
|
- lib/spec/expectations/extensions/object.rb
|
142
117
|
- lib/spec/expectations/extensions/string_and_symbol.rb
|
143
118
|
- lib/spec/expectations/handler.rb
|
119
|
+
- lib/spec/expectations/wrap_expectation.rb
|
144
120
|
- lib/spec/extensions.rb
|
145
121
|
- lib/spec/extensions/class.rb
|
146
|
-
- lib/spec/extensions/main.rb
|
147
|
-
- lib/spec/extensions/metaclass.rb
|
148
|
-
- lib/spec/extensions/object.rb
|
149
122
|
- lib/spec/interop/test.rb
|
150
123
|
- lib/spec/interop/test/unit/autorunner.rb
|
151
124
|
- lib/spec/interop/test/unit/testcase.rb
|
@@ -158,11 +131,14 @@ files:
|
|
158
131
|
- lib/spec/matchers/change.rb
|
159
132
|
- lib/spec/matchers/eql.rb
|
160
133
|
- lib/spec/matchers/equal.rb
|
134
|
+
- lib/spec/matchers/errors.rb
|
161
135
|
- lib/spec/matchers/exist.rb
|
136
|
+
- lib/spec/matchers/generated_descriptions.rb
|
162
137
|
- lib/spec/matchers/has.rb
|
163
138
|
- lib/spec/matchers/have.rb
|
164
139
|
- lib/spec/matchers/include.rb
|
165
140
|
- lib/spec/matchers/match.rb
|
141
|
+
- lib/spec/matchers/method_missing.rb
|
166
142
|
- lib/spec/matchers/operator_matcher.rb
|
167
143
|
- lib/spec/matchers/raise_error.rb
|
168
144
|
- lib/spec/matchers/respond_to.rb
|
@@ -245,11 +221,13 @@ files:
|
|
245
221
|
- spec/autotest/autotest_helper.rb
|
246
222
|
- spec/autotest/autotest_matchers.rb
|
247
223
|
- spec/autotest/discover_spec.rb
|
224
|
+
- spec/autotest/failed_results_re_spec.rb
|
248
225
|
- spec/autotest/rspec_spec.rb
|
249
226
|
- spec/rspec_suite.rb
|
250
227
|
- spec/ruby_forker.rb
|
251
228
|
- spec/spec.opts
|
252
229
|
- spec/spec/adapters/ruby_engine_spec.rb
|
230
|
+
- spec/spec/dsl/main_spec.rb
|
253
231
|
- spec/spec/example/configuration_spec.rb
|
254
232
|
- spec/spec/example/example_group_class_definition_spec.rb
|
255
233
|
- spec/spec/example/example_group_factory_spec.rb
|
@@ -266,7 +244,7 @@ files:
|
|
266
244
|
- spec/spec/expectations/differs/default_spec.rb
|
267
245
|
- spec/spec/expectations/extensions/object_spec.rb
|
268
246
|
- spec/spec/expectations/fail_with_spec.rb
|
269
|
-
- spec/spec/
|
247
|
+
- spec/spec/expectations/wrap_expectation_spec.rb
|
270
248
|
- spec/spec/interop/test/unit/resources/spec_that_fails.rb
|
271
249
|
- spec/spec/interop/test/unit/resources/spec_that_passes.rb
|
272
250
|
- spec/spec/interop/test/unit/resources/spec_with_errors.rb
|
@@ -308,6 +286,7 @@ files:
|
|
308
286
|
- spec/spec/mocks/bug_report_11545_spec.rb
|
309
287
|
- spec/spec/mocks/bug_report_15719_spec.rb
|
310
288
|
- spec/spec/mocks/bug_report_496.rb
|
289
|
+
- spec/spec/mocks/bug_report_600_spec.rb
|
311
290
|
- spec/spec/mocks/bug_report_7611_spec.rb
|
312
291
|
- spec/spec/mocks/bug_report_7805_spec.rb
|
313
292
|
- spec/spec/mocks/bug_report_8165_spec.rb
|
@@ -406,6 +385,7 @@ files:
|
|
406
385
|
- stories/helper.rb
|
407
386
|
- stories/interop/examples_and_tests_together
|
408
387
|
- stories/interop/stories.rb
|
388
|
+
- stories/interop/test_but_not_test_unit
|
409
389
|
- stories/interop/test_case_with_should_methods
|
410
390
|
- stories/mock_framework_integration/stories.rb
|
411
391
|
- stories/mock_framework_integration/use_flexmock.story
|
@@ -420,6 +400,7 @@ files:
|
|
420
400
|
- stories/resources/steps/running_rspec.rb
|
421
401
|
- stories/resources/stories/failing_story.rb
|
422
402
|
- stories/resources/test/spec_and_test_together.rb
|
403
|
+
- stories/resources/test/spec_including_test_but_not_unit.rb
|
423
404
|
- stories/resources/test/test_case_with_should_methods.rb
|
424
405
|
- stories/stories/multiline_steps.story
|
425
406
|
- stories/stories/steps/multiline_steps.rb
|
@@ -464,6 +445,6 @@ rubyforge_project: rspec
|
|
464
445
|
rubygems_version: 1.2.0
|
465
446
|
signing_key:
|
466
447
|
specification_version: 2
|
467
|
-
summary: rspec 1.1.11
|
448
|
+
summary: rspec 1.1.11.1
|
468
449
|
test_files: []
|
469
450
|
|