dchelimsky-rspec 1.1.11 → 1.1.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. data/.autotest +4 -0
  2. data/History.txt +19 -3
  3. data/Manifest.txt +6 -1
  4. data/examples/failing/README.txt +7 -0
  5. data/examples/failing/diffing_spec.rb +36 -0
  6. data/examples/failing/failing_autogenerated_docstrings_example.rb +19 -0
  7. data/examples/failing/failure_in_setup.rb +10 -0
  8. data/examples/failing/failure_in_teardown.rb +10 -0
  9. data/examples/failing/mocking_example.rb +40 -0
  10. data/examples/failing/mocking_with_flexmock.rb +26 -0
  11. data/examples/failing/mocking_with_mocha.rb +25 -0
  12. data/examples/failing/mocking_with_rr.rb +27 -0
  13. data/examples/failing/partial_mock_example.rb +20 -0
  14. data/examples/failing/predicate_example.rb +34 -0
  15. data/examples/failing/raising_example.rb +47 -0
  16. data/examples/failing/spec_helper.rb +3 -0
  17. data/examples/failing/syntax_error_example.rb +7 -0
  18. data/examples/failing/team_spec.rb +44 -0
  19. data/examples/failing/timeout_behaviour.rb +7 -0
  20. data/examples/passing/custom_formatter.rb +1 -1
  21. data/examples/passing/simple_matcher_example.rb +31 -0
  22. data/lib/autotest/rspec.rb +1 -1
  23. data/lib/spec/dsl/main.rb +82 -0
  24. data/lib/spec/dsl.rb +1 -0
  25. data/lib/spec/example/before_and_after_hooks.rb +2 -1
  26. data/lib/spec/example/configuration.rb +1 -1
  27. data/lib/spec/example/example_group.rb +1 -0
  28. data/lib/spec/example/example_group_factory.rb +2 -1
  29. data/lib/spec/example/example_group_methods.rb +40 -25
  30. data/lib/spec/example/example_methods.rb +19 -8
  31. data/lib/spec/example.rb +15 -17
  32. data/lib/spec/expectations/handler.rb +23 -28
  33. data/lib/spec/expectations/wrap_expectation.rb +56 -0
  34. data/lib/spec/expectations.rb +22 -18
  35. data/lib/spec/extensions.rb +0 -1
  36. data/lib/spec/interop/test/unit/testcase.rb +19 -17
  37. data/lib/spec/matchers/be_close.rb +6 -22
  38. data/lib/spec/matchers/eql.rb +7 -25
  39. data/lib/spec/matchers/equal.rb +6 -24
  40. data/lib/spec/matchers/errors.rb +5 -0
  41. data/lib/spec/matchers/exist.rb +8 -14
  42. data/lib/spec/matchers/generated_descriptions.rb +48 -0
  43. data/lib/spec/matchers/has.rb +12 -28
  44. data/lib/spec/matchers/include.rb +12 -9
  45. data/lib/spec/matchers/match.rb +8 -27
  46. data/lib/spec/matchers/method_missing.rb +9 -0
  47. data/lib/spec/matchers/operator_matcher.rb +23 -46
  48. data/lib/spec/matchers/raise_error.rb +4 -8
  49. data/lib/spec/matchers/respond_to.rb +2 -1
  50. data/lib/spec/matchers/throw_symbol.rb +9 -3
  51. data/lib/spec/mocks/message_expectation.rb +0 -5
  52. data/lib/spec/mocks/proxy.rb +12 -10
  53. data/lib/spec/rake/spectask.rb +4 -6
  54. data/lib/spec/runner/class_and_arguments_parser.rb +7 -9
  55. data/lib/spec/runner/command_line.rb +6 -8
  56. data/lib/spec/runner/formatter/base_text_formatter.rb +3 -2
  57. data/lib/spec/runner/option_parser.rb +4 -6
  58. data/lib/spec/runner/spec_parser.rb +5 -5
  59. data/lib/spec/runner.rb +37 -39
  60. data/lib/spec/story/runner/story_runner.rb +10 -6
  61. data/lib/spec/story/runner.rb +40 -42
  62. data/lib/spec/story/world.rb +66 -70
  63. data/lib/spec/version.rb +3 -1
  64. data/lib/spec.rb +21 -19
  65. data/rspec.gemspec +15 -6
  66. data/spec/autotest/autotest_helper.rb +2 -2
  67. data/spec/autotest/discover_spec.rb +4 -15
  68. data/spec/autotest/failed_results_re_spec.rb +24 -0
  69. data/spec/autotest/rspec_spec.rb +0 -37
  70. data/spec/spec/dsl/main_spec.rb +65 -0
  71. data/spec/spec/example/example_group_class_definition_spec.rb +6 -2
  72. data/spec/spec/example/example_group_factory_spec.rb +2 -1
  73. data/spec/spec/example/example_group_methods_spec.rb +138 -141
  74. data/spec/spec/example/example_group_spec.rb +3 -5
  75. data/spec/spec/example/example_methods_spec.rb +60 -23
  76. data/spec/spec/expectations/wrap_expectation_spec.rb +30 -0
  77. data/spec/spec/interop/test/unit/spec_spec.rb +1 -5
  78. data/spec/spec/interop/test/unit/test_unit_spec_helper.rb +4 -0
  79. data/spec/spec/matchers/be_close_spec.rb +12 -10
  80. data/spec/spec/matchers/description_generation_spec.rb +1 -1
  81. data/spec/spec/matchers/eql_spec.rb +7 -6
  82. data/spec/spec/matchers/equal_spec.rb +7 -6
  83. data/spec/spec/matchers/has_spec.rb +1 -1
  84. data/spec/spec/matchers/have_spec.rb +23 -18
  85. data/spec/spec/matchers/include_spec.rb +24 -0
  86. data/spec/spec/matchers/matcher_methods_spec.rb +1 -13
  87. data/spec/spec/matchers/throw_symbol_spec.rb +3 -3
  88. data/spec/spec/mocks/bug_report_11545_spec.rb +4 -5
  89. data/spec/spec/mocks/bug_report_496.rb +11 -9
  90. data/spec/spec/mocks/bug_report_600_spec.rb +22 -0
  91. data/spec/spec/runner/formatter/nested_text_formatter_spec.rb +1 -1
  92. data/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +4 -14
  93. data/spec/spec/runner/formatter/specdoc_formatter_spec.rb +1 -1
  94. data/spec/spec/runner/options_spec.rb +1 -1
  95. data/spec/spec/runner/spec_parser_spec.rb +76 -80
  96. data/spec/spec_helper.rb +4 -0
  97. data/stories/example_groups/autogenerated_docstrings +4 -4
  98. data/stories/interop/test_but_not_test_unit +14 -0
  99. data/stories/resources/helpers/story_helper.rb +1 -1
  100. data/stories/resources/test/spec_including_test_but_not_unit.rb +11 -0
  101. data/story_server/prototype/javascripts/prototype.js +1 -1
  102. metadata +34 -53
  103. 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
- attr_reader :parser, :file
5
- before(:each) do
6
- @original_rspec_options = Spec::Runner.options
7
- Spec::Runner.use ::Spec::Runner::Options.new(StringIO.new, StringIO.new)
8
- @parser = Spec::Runner::SpecParser.new
9
- @file = "#{File.dirname(__FILE__)}/spec_parser/spec_parser_fixture.rb"
10
- load file
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
@@ -39,6 +39,10 @@ module Spec
39
39
  def run_with(options)
40
40
  ::Spec::Runner::CommandLine.run(options)
41
41
  end
42
+
43
+ def with_ruby(version)
44
+ yield if RUBY_PLATFORM =~ Regexp.compile("^#{version}")
45
+ end
42
46
  end
43
47
  end
44
48
 
@@ -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 #size/
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 #size/
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 #size/
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 #size/
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"
@@ -12,5 +12,5 @@ module StoryHelper
12
12
  ruby("#{File.dirname(__FILE__) + '/../../resources/helpers/cmdline.rb'} #{args}", stderr)
13
13
  end
14
14
 
15
- Spec::Story::World.send :include, self
15
+ Spec::Story::World.__send__ :include, self
16
16
  end
@@ -0,0 +1,11 @@
1
+ $:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib])
2
+ require 'spec'
3
+
4
+ module Test
5
+ end
6
+
7
+ describe "description" do
8
+ it "should description" do
9
+ 1.should == 1
10
+ end
11
+ end
@@ -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.send(this.body);
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-10-24 00:00:00 -07:00
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/extensions/main_spec.rb
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
 
@@ -1,7 +0,0 @@
1
- module Spec
2
- module MetaClass
3
- def metaclass
4
- class << self; self; end
5
- end
6
- end
7
- end