rr 1.1.1 → 1.1.2.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +46 -0
- data/CHANGES.md +21 -1
- data/Gemfile +19 -0
- data/README.md +91 -106
- data/Rakefile +55 -0
- data/gemfiles/ruby_18_rspec_1.gemfile +14 -0
- data/gemfiles/ruby_18_rspec_1.gemfile.lock +38 -0
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile +18 -0
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile.lock +64 -0
- data/gemfiles/ruby_19_rspec_2.gemfile +14 -0
- data/gemfiles/ruby_19_rspec_2.gemfile.lock +49 -0
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile +15 -0
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile.lock +123 -0
- data/gemfiles/ruby_19_rspec_2_rails_4.gemfile +15 -0
- data/gemfiles/ruby_19_rspec_2_rails_4.gemfile.lock +119 -0
- data/lib/rr/adapters.rb +4 -14
- data/lib/rr/integrations.rb +13 -12
- data/lib/rr/integrations/decorator.rb +4 -1
- data/lib/rr/integrations/rspec_2.rb +6 -1
- data/lib/rr/integrations/test_unit_1.rb +2 -2
- data/lib/rr/integrations/test_unit_2.rb +3 -1
- data/lib/rr/version.rb +1 -2
- data/lib/rr/without_autohook.rb +1 -1
- data/rr.gemspec +6 -2
- data/spec/custom_formatter_for_rspec.rb +18 -0
- data/spec/custom_formatter_for_rspec_2.rb +40 -0
- data/spec/defines_spec_suite_tasks.rb +45 -0
- data/spec/fixtures/rubygems_patch_for_187.rb +598 -0
- data/spec/global_helper.rb +33 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_suite_configuration.rb +132 -0
- data/spec/spec_suite_runner.rb +47 -0
- data/spec/suites.yml +24 -0
- data/spec/suites/rspec_1/helper.rb +24 -0
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +93 -0
- data/spec/suites/rspec_1/integration/test_unit_1_spec.rb +102 -0
- data/spec/suites/rspec_1/integration/test_unit_2_spec.rb +109 -0
- data/spec/suites/rspec_1/spec_helper.rb +3 -0
- data/spec/suites/rspec_1_rails_2/integration/astc_rails_2_spec.rb +141 -0
- data/spec/suites/rspec_1_rails_2/integration/rspec_1_rails_2_spec.rb +132 -0
- data/spec/suites/rspec_1_rails_2/integration/test_unit_1_rails_2_spec.rb +141 -0
- data/spec/suites/rspec_1_rails_2/integration/test_unit_2_rails_2_spec.rb +148 -0
- data/spec/suites/rspec_1_rails_2/spec_helper.rb +3 -0
- data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +47 -0
- data/spec/suites/rspec_2/functional/dont_allow_spec.rb +12 -0
- data/spec/suites/rspec_2/functional/dsl_spec.rb +13 -0
- data/spec/suites/rspec_2/functional/instance_of_spec.rb +14 -0
- data/spec/suites/rspec_2/functional/mock_spec.rb +241 -0
- data/spec/suites/rspec_2/functional/proxy_spec.rb +136 -0
- data/spec/suites/rspec_2/functional/spy_spec.rb +41 -0
- data/spec/suites/rspec_2/functional/strong_spec.rb +79 -0
- data/spec/suites/rspec_2/functional/stub_spec.rb +190 -0
- data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +128 -0
- data/spec/suites/rspec_2/helper.rb +28 -0
- data/spec/suites/rspec_2/integration/minitest_4_spec.rb +109 -0
- data/spec/suites/rspec_2/integration/minitest_spec.rb +109 -0
- data/spec/suites/rspec_2/integration/rspec_2_spec.rb +133 -0
- data/spec/suites/rspec_2/integration/test_unit_200_spec.rb +102 -0
- data/spec/suites/rspec_2/integration/test_unit_2_spec.rb +109 -0
- data/spec/suites/rspec_2/spec_helper.rb +3 -0
- data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +32 -0
- data/spec/suites/rspec_2/support/shared_examples/space.rb +13 -0
- data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +9 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/double_creators_spec.rb +135 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/space_spec.rb +101 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/wildcard_matchers_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +39 -0
- data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +81 -0
- data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +55 -0
- data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +41 -0
- data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +41 -0
- data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +114 -0
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +93 -0
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +446 -0
- data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +67 -0
- data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +48 -0
- data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +14 -0
- data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +135 -0
- data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +30 -0
- data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
- data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +61 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +22 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +37 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +43 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +58 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +35 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +39 -0
- data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +88 -0
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +545 -0
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +32 -0
- data/spec/suites/rspec_2/unit/integrations/rspec/invocation_matcher_spec.rb +297 -0
- data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +85 -0
- data/spec/suites/rspec_2/unit/proc_from_block_spec.rb +14 -0
- data/spec/suites/rspec_2/unit/rr_spec.rb +28 -0
- data/spec/suites/rspec_2/unit/space_spec.rb +595 -0
- data/spec/suites/rspec_2/unit/spy_verification_spec.rb +133 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +46 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +54 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +54 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +75 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +117 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +33 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +45 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +64 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +64 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +55 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +46 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +57 -0
- data/spec/suites/rspec_2_rails_3/integration/astc_rails_3_spec.rb +141 -0
- data/spec/suites/rspec_2_rails_3/integration/minitest_4_rails_3_spec.rb +148 -0
- data/spec/suites/rspec_2_rails_3/integration/rspec_2_rails_3_spec.rb +172 -0
- data/spec/suites/rspec_2_rails_3/integration/test_unit_200_rails_3_spec.rb +141 -0
- data/spec/suites/rspec_2_rails_3/integration/test_unit_2_rails_3_spec.rb +148 -0
- data/spec/suites/rspec_2_rails_3/spec_helper.rb +3 -0
- data/spec/suites/rspec_2_rails_4/integration/astc_rails_4_spec.rb +142 -0
- data/spec/suites/rspec_2_rails_4/integration/minitest_4_rails_4_spec.rb +149 -0
- data/spec/suites/rspec_2_rails_4/integration/rspec_2_rails_4_spec.rb +173 -0
- data/spec/suites/rspec_2_rails_4/integration/test_unit_200_rails_4_spec.rb +142 -0
- data/spec/suites/rspec_2_rails_4/integration/test_unit_2_rails_4_spec.rb +149 -0
- data/spec/suites/rspec_2_rails_4/spec_helper.rb +3 -0
- data/spec/support/adapter.rb +22 -0
- data/spec/support/adapter_tests/base.rb +45 -0
- data/spec/support/adapter_tests/minitest.rb +7 -0
- data/spec/support/adapter_tests/rspec.rb +66 -0
- data/spec/support/adapter_tests/test_unit.rb +47 -0
- data/spec/support/command_runner.rb +105 -0
- data/spec/support/generator.rb +56 -0
- data/spec/support/integration_tests/base.rb +64 -0
- data/spec/support/integration_tests/rails.rb +60 -0
- data/spec/support/integration_tests/rails_minitest.rb +13 -0
- data/spec/support/integration_tests/rails_rspec.rb +13 -0
- data/spec/support/integration_tests/rails_test_unit.rb +13 -0
- data/spec/support/integration_tests/rails_test_unit_like.rb +13 -0
- data/spec/support/integration_tests/ruby.rb +7 -0
- data/spec/support/integration_tests/ruby_minitest.rb +13 -0
- data/spec/support/integration_tests/ruby_rspec.rb +13 -0
- data/spec/support/integration_tests/ruby_test_unit.rb +13 -0
- data/spec/support/matchers/be_a_subset_of_matcher.rb +24 -0
- data/spec/support/project/cucumber.rb +50 -0
- data/spec/support/project/generator.rb +352 -0
- data/spec/support/project/minitest.rb +39 -0
- data/spec/support/project/rails.rb +199 -0
- data/spec/support/project/rails_minitest.rb +17 -0
- data/spec/support/project/rails_rspec.rb +50 -0
- data/spec/support/project/rails_test_unit.rb +17 -0
- data/spec/support/project/rails_test_unit_like.rb +17 -0
- data/spec/support/project/rspec.rb +69 -0
- data/spec/support/project/ruby.rb +34 -0
- data/spec/support/project/ruby_minitest.rb +11 -0
- data/spec/support/project/ruby_rspec.rb +29 -0
- data/spec/support/project/ruby_test_unit.rb +11 -0
- data/spec/support/project/ruby_test_unit_like.rb +21 -0
- data/spec/support/project/test_unit.rb +29 -0
- data/spec/support/project/test_unit_like.rb +7 -0
- data/spec/support/project/tests_runner.rb +22 -0
- data/spec/support/test.sqlite3 +0 -0
- data/spec/support/test_case/generator.rb +53 -0
- data/spec/support/test_case/minitest.rb +13 -0
- data/spec/support/test_case/rspec.rb +19 -0
- data/spec/support/test_case/test_unit.rb +21 -0
- data/spec/support/test_file/generator.rb +120 -0
- data/spec/support/test_file/minitest.rb +19 -0
- data/spec/support/test_file/rails_minitest.rb +7 -0
- data/spec/support/test_file/rails_rspec.rb +12 -0
- data/spec/support/test_file/rails_test_unit.rb +25 -0
- data/spec/support/test_file/rspec.rb +33 -0
- data/spec/support/test_file/test_unit.rb +36 -0
- data/spec/support/test_helper/generator.rb +27 -0
- data/spec/support/test_helper/minitest.rb +7 -0
- data/spec/support/test_helper/rails.rb +31 -0
- data/spec/support/test_helper/rails_minitest.rb +7 -0
- data/spec/support/test_helper/rails_rspec.rb +25 -0
- data/spec/support/test_helper/rails_test_unit.rb +23 -0
- data/spec/support/test_helper/rspec.rb +7 -0
- data/spec/support/test_helper/ruby.rb +31 -0
- data/spec/support/test_helper/test_unit.rb +7 -0
- metadata +172 -6
- data/VERSION +0 -1
@@ -0,0 +1,141 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe 'Integration with straight ActiveSupport::TestCase and Rails 3' do
|
4
|
+
include IntegrationTests::RailsTestUnitLike
|
5
|
+
|
6
|
+
def configure_rails_project_generator(project_generator)
|
7
|
+
super
|
8
|
+
project_generator.configure do |project|
|
9
|
+
project.rails_version = 3
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.including_the_adapter_manually_works
|
14
|
+
specify "including the adapter manually works" do
|
15
|
+
project = generate_project do |project|
|
16
|
+
project.add_to_prelude <<-EOT
|
17
|
+
class ActiveSupport::TestCase
|
18
|
+
include RR::Adapters::TestUnit
|
19
|
+
end
|
20
|
+
EOT
|
21
|
+
end
|
22
|
+
project.add_test_file do |file|
|
23
|
+
file.add_working_test_case_with_adapter_tests do |test_case|
|
24
|
+
test_case.add_to_body <<-EOT
|
25
|
+
def test_the_correct_adapters_are_loaded
|
26
|
+
assert_adapters_loaded #{adapters_that_should_be_loaded.inspect}
|
27
|
+
end
|
28
|
+
EOT
|
29
|
+
end
|
30
|
+
end
|
31
|
+
result = project.run_tests
|
32
|
+
result.should be_success
|
33
|
+
result.should_not have_errors_or_failures
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.rr_hooks_into_the_test_framework_automatically
|
38
|
+
specify "RR hooks into the test framework automatically" do
|
39
|
+
project = generate_project
|
40
|
+
project.add_test_file do |file|
|
41
|
+
file.add_working_test_case
|
42
|
+
end
|
43
|
+
result = project.run_tests
|
44
|
+
result.should be_success
|
45
|
+
result.should_not have_errors_or_failures
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.using_rr_with_cucumber_works
|
50
|
+
specify "using RR with Cucumber works" do
|
51
|
+
project_generator = build_rails_project_generator do |project_generator|
|
52
|
+
project_generator.mixin Project::Cucumber
|
53
|
+
end
|
54
|
+
project = project_generator.call
|
55
|
+
result = project.run_command_within("bundle exec cucumber")
|
56
|
+
result.should be_success
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
context 'when Bundler is autorequiring RR' do
|
61
|
+
def configure_project_generator(project_generator)
|
62
|
+
super
|
63
|
+
project_generator.configure do |project|
|
64
|
+
project.autorequire_gems = true
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
def adapters_that_should_be_loaded
|
69
|
+
[:TestUnit200]
|
70
|
+
end
|
71
|
+
|
72
|
+
including_the_adapter_manually_works
|
73
|
+
using_rr_with_cucumber_works
|
74
|
+
end
|
75
|
+
|
76
|
+
context 'when RR is being required manually' do
|
77
|
+
def configure_project_generator(project_generator)
|
78
|
+
super
|
79
|
+
project_generator.configure do |project|
|
80
|
+
project.autorequire_gems = false
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def adapters_that_should_be_loaded
|
85
|
+
[:TestUnit200, :TestUnit200ActiveSupport]
|
86
|
+
end
|
87
|
+
|
88
|
+
rr_hooks_into_the_test_framework_automatically
|
89
|
+
including_the_adapter_manually_works
|
90
|
+
using_rr_with_cucumber_works
|
91
|
+
|
92
|
+
specify "when RR raises an error it raises a failure not an exception" do
|
93
|
+
project = generate_project
|
94
|
+
project.add_test_file do |file|
|
95
|
+
file.add_test_case do |test_case|
|
96
|
+
test_case.add_test <<-EOT
|
97
|
+
object = Object.new
|
98
|
+
mock(object).foo
|
99
|
+
EOT
|
100
|
+
end
|
101
|
+
end
|
102
|
+
result = project.run_tests
|
103
|
+
result.should fail_with_output(/1 failure/)
|
104
|
+
end
|
105
|
+
|
106
|
+
specify "the database is properly rolled back after an RR error" do
|
107
|
+
project = generate_project do |project|
|
108
|
+
project.add_model_and_migration(:person, :people, :name => :string)
|
109
|
+
end
|
110
|
+
project.add_test_file do |file|
|
111
|
+
file.add_test_case do |test_case|
|
112
|
+
test_case.add_test <<-EOT
|
113
|
+
Person.create!(:name => 'Joe Blow')
|
114
|
+
object = Object.new
|
115
|
+
mock(object).foo
|
116
|
+
EOT
|
117
|
+
end
|
118
|
+
end
|
119
|
+
expect {
|
120
|
+
result = project.run_tests
|
121
|
+
result.should have_errors_or_failures
|
122
|
+
}.to leave_database_table_clear(project, :people)
|
123
|
+
end
|
124
|
+
|
125
|
+
specify "throwing an error in teardown doesn't mess things up" do
|
126
|
+
project = generate_project
|
127
|
+
project.add_test_file do |file|
|
128
|
+
file.add_test_case do |test_case|
|
129
|
+
test_case.add_to_body <<-EOT
|
130
|
+
def teardown
|
131
|
+
raise 'hell'
|
132
|
+
end
|
133
|
+
EOT
|
134
|
+
test_case.add_test("") # doesn't matter
|
135
|
+
end
|
136
|
+
end
|
137
|
+
result = project.run_tests
|
138
|
+
result.should fail_with_output(/1 error/)
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
@@ -0,0 +1,148 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe 'Integration with MiniTest 4 and Rails 3' do
|
4
|
+
include IntegrationTests::RailsMinitest
|
5
|
+
|
6
|
+
def configure_rails_project_generator(project_generator)
|
7
|
+
super
|
8
|
+
project_generator.configure do |project|
|
9
|
+
project.rails_version = 3
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def configure_project_generator(project_generator)
|
14
|
+
super
|
15
|
+
project_generator.configure do |project|
|
16
|
+
project.minitest_version = 4
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.including_the_adapter_manually_works
|
21
|
+
specify "including the adapter manually works" do
|
22
|
+
project = generate_project do |project|
|
23
|
+
project.add_to_prelude <<-EOT
|
24
|
+
class ActiveSupport::TestCase
|
25
|
+
include RR::Adapters::MiniTest
|
26
|
+
end
|
27
|
+
EOT
|
28
|
+
end
|
29
|
+
project.add_test_file do |file|
|
30
|
+
file.add_working_test_case_with_adapter_tests do |test_case|
|
31
|
+
test_case.add_to_body <<-EOT
|
32
|
+
def test_the_correct_adapters_are_loaded
|
33
|
+
assert_adapters_loaded #{adapters_that_should_be_loaded.inspect}
|
34
|
+
end
|
35
|
+
EOT
|
36
|
+
end
|
37
|
+
end
|
38
|
+
result = project.run_tests
|
39
|
+
result.should be_success
|
40
|
+
result.should_not have_errors_or_failures
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.rr_hooks_into_the_test_framework_automatically
|
45
|
+
specify "RR hooks into the test framework automatically" do
|
46
|
+
project = generate_project
|
47
|
+
project.add_test_file do |file|
|
48
|
+
file.add_working_test_case
|
49
|
+
end
|
50
|
+
result = project.run_tests
|
51
|
+
result.should be_success
|
52
|
+
result.should_not have_errors_or_failures
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def self.using_rr_with_cucumber_works
|
57
|
+
specify "using RR with Cucumber works" do
|
58
|
+
project_generator = build_rails_project_generator do |generator|
|
59
|
+
generator.mixin Project::Cucumber
|
60
|
+
end
|
61
|
+
project = project_generator.call
|
62
|
+
result = project.run_command_within("bundle exec cucumber")
|
63
|
+
result.should be_success
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'when Bundler is autorequiring RR' do
|
68
|
+
def configure_project_generator(project_generator)
|
69
|
+
super
|
70
|
+
project_generator.configure do |project|
|
71
|
+
project.autorequire_gems = true
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def adapters_that_should_be_loaded
|
76
|
+
[:MiniTest4]
|
77
|
+
end
|
78
|
+
|
79
|
+
including_the_adapter_manually_works
|
80
|
+
using_rr_with_cucumber_works
|
81
|
+
end
|
82
|
+
|
83
|
+
context 'when RR is being required manually' do
|
84
|
+
def configure_project_generator(project_generator)
|
85
|
+
super
|
86
|
+
project_generator.configure do |project|
|
87
|
+
project.autorequire_gems = false
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
def adapters_that_should_be_loaded
|
92
|
+
[:MiniTest4, :MiniTest4ActiveSupport]
|
93
|
+
end
|
94
|
+
|
95
|
+
rr_hooks_into_the_test_framework_automatically
|
96
|
+
including_the_adapter_manually_works
|
97
|
+
using_rr_with_cucumber_works
|
98
|
+
|
99
|
+
specify "when RR raises an error it raises a failure not an exception" do
|
100
|
+
project = generate_project
|
101
|
+
project.add_test_file do |file|
|
102
|
+
file.add_test_case do |test_case|
|
103
|
+
test_case.add_test <<-EOT
|
104
|
+
object = Object.new
|
105
|
+
mock(object).foo
|
106
|
+
EOT
|
107
|
+
end
|
108
|
+
end
|
109
|
+
result = project.run_tests
|
110
|
+
result.should fail_with_output(/1 failure/)
|
111
|
+
end
|
112
|
+
|
113
|
+
specify "the database is properly rolled back after an RR error" do
|
114
|
+
project = generate_project do |project|
|
115
|
+
project.add_model_and_migration(:person, :people, :name => :string)
|
116
|
+
end
|
117
|
+
project.add_test_file do |file|
|
118
|
+
file.add_test_case do |test_case|
|
119
|
+
test_case.add_test <<-EOT
|
120
|
+
Person.create!(:name => 'Joe Blow')
|
121
|
+
object = Object.new
|
122
|
+
mock(object).foo
|
123
|
+
EOT
|
124
|
+
end
|
125
|
+
end
|
126
|
+
expect {
|
127
|
+
result = project.run_tests
|
128
|
+
result.should have_errors_or_failures
|
129
|
+
}.to leave_database_table_clear(project, :people)
|
130
|
+
end
|
131
|
+
|
132
|
+
specify "throwing an error in teardown doesn't mess things up" do
|
133
|
+
project = generate_project
|
134
|
+
project.add_test_file do |file|
|
135
|
+
file.add_test_case do |test_case|
|
136
|
+
test_case.add_to_body <<-EOT
|
137
|
+
def teardown
|
138
|
+
raise 'hell'
|
139
|
+
end
|
140
|
+
EOT
|
141
|
+
test_case.add_test("") # doesn't matter
|
142
|
+
end
|
143
|
+
end
|
144
|
+
result = project.run_tests
|
145
|
+
result.should fail_with_output(/1 error/)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
@@ -0,0 +1,172 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe 'Integration with RSpec 2 and Rails 3' do
|
4
|
+
include IntegrationTests::RailsRSpec
|
5
|
+
|
6
|
+
def configure_rails_project_generator(project_generator)
|
7
|
+
super
|
8
|
+
project_generator.configure do |project|
|
9
|
+
project.rails_version = 3
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def configure_project_generator(project_generator)
|
14
|
+
super
|
15
|
+
project_generator.configure do |project|
|
16
|
+
project.rspec_version = 2
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.including_the_adapter_manually_works
|
21
|
+
specify "including the adapter manually works" do
|
22
|
+
project = generate_project do |project|
|
23
|
+
project.add_to_prelude <<-EOT
|
24
|
+
RSpec.configure do |c|
|
25
|
+
c.mock_with :rr
|
26
|
+
end
|
27
|
+
EOT
|
28
|
+
end
|
29
|
+
project.add_test_file do |file|
|
30
|
+
file.add_working_test_case_with_adapter_tests do |test_case|
|
31
|
+
test_case.add_to_body <<-EOT
|
32
|
+
it 'loads the correct adapters' do
|
33
|
+
assert_adapters_loaded #{adapters_that_should_be_loaded.inspect}
|
34
|
+
end
|
35
|
+
EOT
|
36
|
+
end
|
37
|
+
end
|
38
|
+
result = project.run_tests
|
39
|
+
result.should be_success
|
40
|
+
result.should_not have_errors_or_failures
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.rr_hooks_into_the_test_framework_automatically
|
45
|
+
specify "RR hooks into the test framework automatically" do
|
46
|
+
project = generate_project
|
47
|
+
project.add_test_file do |file|
|
48
|
+
file.add_working_test_case
|
49
|
+
end
|
50
|
+
result = project.run_tests
|
51
|
+
result.should be_success
|
52
|
+
result.should_not have_errors_or_failures
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def self.using_rr_with_cucumber_works
|
57
|
+
specify "using RR with Cucumber works" do
|
58
|
+
project_generator = build_rails_project_generator do |project_generator|
|
59
|
+
project_generator.mixin Project::Cucumber
|
60
|
+
end
|
61
|
+
project = project_generator.call
|
62
|
+
result = project.run_command_within("bundle exec cucumber")
|
63
|
+
result.should be_success
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'when Bundler is autorequiring RR' do
|
68
|
+
def configure_project_generator(project_generator)
|
69
|
+
super
|
70
|
+
project_generator.configure do |project|
|
71
|
+
project.autorequire_gems = true
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def adapters_that_should_be_loaded
|
76
|
+
[:RSpec2]
|
77
|
+
end
|
78
|
+
|
79
|
+
including_the_adapter_manually_works
|
80
|
+
using_rr_with_cucumber_works
|
81
|
+
end
|
82
|
+
|
83
|
+
context 'when RR is being required manually' do
|
84
|
+
def configure_project_generator(project_generator)
|
85
|
+
super
|
86
|
+
project_generator.configure do |project|
|
87
|
+
project.autorequire_gems = false
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
def adapters_that_should_be_loaded
|
92
|
+
[:RSpec2]
|
93
|
+
end
|
94
|
+
|
95
|
+
rr_hooks_into_the_test_framework_automatically
|
96
|
+
including_the_adapter_manually_works
|
97
|
+
using_rr_with_cucumber_works
|
98
|
+
|
99
|
+
specify "when RR raises an error it raises a failure not an exception" do
|
100
|
+
project = generate_project
|
101
|
+
project.add_test_file do |file|
|
102
|
+
file.add_test_case do |test_case|
|
103
|
+
test_case.add_test <<-EOT
|
104
|
+
object = Object.new
|
105
|
+
mock(object).foo
|
106
|
+
EOT
|
107
|
+
end
|
108
|
+
end
|
109
|
+
result = project.run_tests
|
110
|
+
result.should fail_with_output(/1 failure/)
|
111
|
+
end
|
112
|
+
|
113
|
+
specify "the database is properly rolled back after an RR error" do
|
114
|
+
project = generate_project do |project|
|
115
|
+
project.add_model_and_migration(:person, :people, :name => :string)
|
116
|
+
end
|
117
|
+
project.add_test_file do |file|
|
118
|
+
file.add_test_case do |test_case|
|
119
|
+
test_case.add_test <<-EOT
|
120
|
+
Person.create!(:name => 'Joe Blow')
|
121
|
+
object = Object.new
|
122
|
+
mock(object).foo
|
123
|
+
EOT
|
124
|
+
end
|
125
|
+
end
|
126
|
+
expect {
|
127
|
+
result = project.run_tests
|
128
|
+
result.should have_errors_or_failures
|
129
|
+
}.to leave_database_table_clear(project, :people)
|
130
|
+
end
|
131
|
+
|
132
|
+
specify "it is still possible to use a custom RSpec-2 adapter" do
|
133
|
+
project = generate_project do |project|
|
134
|
+
project.add_to_prelude <<-EOT
|
135
|
+
module RR
|
136
|
+
module Adapters
|
137
|
+
module RSpec2
|
138
|
+
include RRMethods
|
139
|
+
|
140
|
+
def setup_mocks_for_rspec
|
141
|
+
RR.reset
|
142
|
+
end
|
143
|
+
|
144
|
+
def verify_mocks_for_rspec
|
145
|
+
RR.verify
|
146
|
+
end
|
147
|
+
|
148
|
+
def teardown_mocks_for_rspec
|
149
|
+
RR.reset
|
150
|
+
end
|
151
|
+
|
152
|
+
def have_received(method = nil)
|
153
|
+
RR::Adapters::Rspec::InvocationMatcher.new(method)
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
RSpec.configure do |c|
|
160
|
+
c.mock_with RR::Adapters::RSpec2
|
161
|
+
end
|
162
|
+
EOT
|
163
|
+
end
|
164
|
+
project.add_test_file do |file|
|
165
|
+
file.add_test_case_with_adapter_tests
|
166
|
+
end
|
167
|
+
result = project.run_tests
|
168
|
+
result.should be_success
|
169
|
+
result.should_not have_errors_or_failures
|
170
|
+
end
|
171
|
+
end
|
172
|
+
end
|