shoulda 2.0.6 → 2.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. data/README.rdoc +35 -7
  2. data/Rakefile +5 -3
  3. data/lib/shoulda.rb +7 -15
  4. data/lib/shoulda/action_mailer.rb +1 -1
  5. data/lib/shoulda/action_mailer/assertions.rb +32 -33
  6. data/lib/shoulda/active_record.rb +6 -2
  7. data/lib/shoulda/active_record/assertions.rb +62 -81
  8. data/lib/shoulda/active_record/helpers.rb +40 -0
  9. data/lib/shoulda/active_record/macros.rb +518 -639
  10. data/lib/shoulda/active_record/matchers.rb +42 -0
  11. data/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +83 -0
  12. data/lib/shoulda/active_record/matchers/allow_value_matcher.rb +102 -0
  13. data/lib/shoulda/active_record/matchers/association_matcher.rb +226 -0
  14. data/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +87 -0
  15. data/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +141 -0
  16. data/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +169 -0
  17. data/lib/shoulda/active_record/matchers/have_index_matcher.rb +105 -0
  18. data/lib/shoulda/active_record/matchers/have_named_scope_matcher.rb +125 -0
  19. data/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +59 -0
  20. data/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +41 -0
  21. data/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +39 -0
  22. data/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +60 -0
  23. data/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +148 -0
  24. data/lib/shoulda/active_record/matchers/validation_matcher.rb +56 -0
  25. data/lib/shoulda/assertions.rb +50 -40
  26. data/lib/shoulda/autoload_macros.rb +46 -0
  27. data/lib/shoulda/context.rb +124 -126
  28. data/lib/shoulda/controller.rb +8 -8
  29. data/lib/shoulda/controller/formats/html.rb +158 -160
  30. data/lib/shoulda/controller/formats/xml.rb +132 -134
  31. data/lib/shoulda/controller/helpers.rb +51 -53
  32. data/lib/shoulda/controller/macros.rb +278 -258
  33. data/lib/shoulda/controller/resource_options.rb +211 -214
  34. data/lib/shoulda/helpers.rb +5 -7
  35. data/lib/shoulda/macros.rb +63 -64
  36. data/lib/shoulda/private_helpers.rb +16 -18
  37. data/lib/shoulda/rails.rb +1 -8
  38. data/lib/shoulda/rspec.rb +5 -0
  39. data/lib/shoulda/tasks/list_tests.rake +6 -1
  40. data/lib/shoulda/test_unit.rb +19 -0
  41. data/rails/init.rb +1 -1
  42. data/test/README +2 -2
  43. data/test/fail_macros.rb +16 -16
  44. data/test/functional/posts_controller_test.rb +5 -2
  45. data/test/matchers/allow_mass_assignment_of_matcher_test.rb +68 -0
  46. data/test/matchers/allow_value_matcher_test.rb +41 -0
  47. data/test/matchers/association_matcher_test.rb +258 -0
  48. data/test/matchers/ensure_inclusion_of_matcher_test.rb +80 -0
  49. data/test/matchers/ensure_length_of_matcher_test.rb +158 -0
  50. data/test/matchers/have_db_column_matcher_test.rb +169 -0
  51. data/test/matchers/have_index_matcher_test.rb +74 -0
  52. data/test/matchers/have_named_scope_matcher_test.rb +65 -0
  53. data/test/matchers/have_readonly_attributes_matcher_test.rb +29 -0
  54. data/test/matchers/validate_acceptance_of_matcher_test.rb +44 -0
  55. data/test/matchers/validate_numericality_of_matcher_test.rb +52 -0
  56. data/test/matchers/validate_presence_of_matcher_test.rb +86 -0
  57. data/test/matchers/validate_uniqueness_of_matcher_test.rb +141 -0
  58. data/test/model_builder.rb +61 -0
  59. data/test/other/autoload_macro_test.rb +18 -0
  60. data/test/other/helpers_test.rb +58 -0
  61. data/test/other/private_helpers_test.rb +1 -1
  62. data/test/other/should_test.rb +16 -16
  63. data/test/rails_root/app/controllers/posts_controller.rb +6 -5
  64. data/test/rails_root/app/models/pets/dog.rb +10 -0
  65. data/test/rails_root/app/models/treat.rb +3 -0
  66. data/test/rails_root/app/models/user.rb +2 -2
  67. data/test/rails_root/app/views/layouts/posts.rhtml +2 -0
  68. data/test/rails_root/config/database.yml +1 -1
  69. data/test/rails_root/config/environments/{sqlite3.rb → test.rb} +0 -0
  70. data/test/rails_root/db/migrate/001_create_users.rb +3 -2
  71. data/test/rails_root/db/migrate/011_create_treats.rb +12 -0
  72. data/test/rails_root/log/test.log +0 -0
  73. data/test/rails_root/test/shoulda_macros/custom_macro.rb +6 -0
  74. data/test/rails_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +6 -0
  75. data/test/rails_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +6 -0
  76. data/test/test_helper.rb +3 -1
  77. data/test/unit/address_test.rb +1 -1
  78. data/test/unit/dog_test.rb +5 -2
  79. data/test/unit/post_test.rb +7 -3
  80. data/test/unit/product_test.rb +2 -2
  81. data/test/unit/tag_test.rb +2 -1
  82. data/test/unit/user_test.rb +17 -8
  83. metadata +44 -4
  84. data/test/rails_root/app/models/dog.rb +0 -5
@@ -0,0 +1,56 @@
1
+ module Shoulda # :nodoc:
2
+ module ActiveRecord # :nodoc:
3
+ module Matchers
4
+
5
+ class ValidationMatcher # :nodoc:
6
+
7
+ attr_reader :failure_message
8
+
9
+ def initialize(attribute)
10
+ @attribute = attribute
11
+ end
12
+
13
+ def negative_failure_message
14
+ @negative_failure_message || @failure_message
15
+ end
16
+
17
+ def matches?(subject)
18
+ @subject = subject
19
+ false
20
+ end
21
+
22
+ private
23
+
24
+ def allows_value_of(value, message = nil)
25
+ allow = AllowValueMatcher.
26
+ new(value).
27
+ for(@attribute).
28
+ with_message(message)
29
+ if allow.matches?(@subject)
30
+ @negative_failure_message = allow.failure_message
31
+ true
32
+ else
33
+ @failure_message = allow.negative_failure_message
34
+ false
35
+ end
36
+ end
37
+
38
+ def disallows_value_of(value, message = nil)
39
+ disallow = AllowValueMatcher.
40
+ new(value).
41
+ for(@attribute).
42
+ with_message(message)
43
+ if disallow.matches?(@subject)
44
+ @failure_message = disallow.negative_failure_message
45
+ false
46
+ else
47
+ @negative_failure_message = disallow.failure_message
48
+ true
49
+ end
50
+ end
51
+ end
52
+
53
+ end
54
+ end
55
+ end
56
+
@@ -1,49 +1,59 @@
1
- module ThoughtBot # :nodoc:
2
- module Shoulda # :nodoc:
3
- module Assertions
4
- # Asserts that two arrays contain the same elements, the same number of times. Essentially ==, but unordered.
5
- #
6
- # assert_same_elements([:a, :b, :c], [:c, :a, :b]) => passes
7
- def assert_same_elements(a1, a2, msg = nil)
8
- [:select, :inject, :size].each do |m|
9
- [a1, a2].each {|a| assert_respond_to(a, m, "Are you sure that #{a.inspect} is an array? It doesn't respond to #{m}.") }
10
- end
1
+ module Shoulda # :nodoc:
2
+ module Assertions
3
+ # Asserts that two arrays contain the same elements, the same number of times. Essentially ==, but unordered.
4
+ #
5
+ # assert_same_elements([:a, :b, :c], [:c, :a, :b]) => passes
6
+ def assert_same_elements(a1, a2, msg = nil)
7
+ [:select, :inject, :size].each do |m|
8
+ [a1, a2].each {|a| assert_respond_to(a, m, "Are you sure that #{a.inspect} is an array? It doesn't respond to #{m}.") }
9
+ end
11
10
 
12
- assert a1h = a1.inject({}) { |h,e| h[e] = a1.select { |i| i == e }.size; h }
13
- assert a2h = a2.inject({}) { |h,e| h[e] = a2.select { |i| i == e }.size; h }
11
+ assert a1h = a1.inject({}) { |h,e| h[e] = a1.select { |i| i == e }.size; h }
12
+ assert a2h = a2.inject({}) { |h,e| h[e] = a2.select { |i| i == e }.size; h }
14
13
 
15
- assert_equal(a1h, a2h, msg)
16
- end
14
+ assert_equal(a1h, a2h, msg)
15
+ end
17
16
 
18
- # Asserts that the given collection contains item x. If x is a regular expression, ensure that
19
- # at least one element from the collection matches x. +extra_msg+ is appended to the error message if the assertion fails.
20
- #
21
- # assert_contains(['a', '1'], /\d/) => passes
22
- # assert_contains(['a', '1'], 'a') => passes
23
- # assert_contains(['a', '1'], /not there/) => fails
24
- def assert_contains(collection, x, extra_msg = "")
25
- collection = [collection] unless collection.is_a?(Array)
26
- msg = "#{x.inspect} not found in #{collection.to_a.inspect} #{extra_msg}"
27
- case x
28
- when Regexp
29
- assert(collection.detect { |e| e =~ x }, msg)
30
- else
31
- assert(collection.include?(x), msg)
32
- end
17
+ # Asserts that the given collection contains item x. If x is a regular expression, ensure that
18
+ # at least one element from the collection matches x. +extra_msg+ is appended to the error message if the assertion fails.
19
+ #
20
+ # assert_contains(['a', '1'], /\d/) => passes
21
+ # assert_contains(['a', '1'], 'a') => passes
22
+ # assert_contains(['a', '1'], /not there/) => fails
23
+ def assert_contains(collection, x, extra_msg = "")
24
+ collection = [collection] unless collection.is_a?(Array)
25
+ msg = "#{x.inspect} not found in #{collection.to_a.inspect} #{extra_msg}"
26
+ case x
27
+ when Regexp
28
+ assert(collection.detect { |e| e =~ x }, msg)
29
+ else
30
+ assert(collection.include?(x), msg)
33
31
  end
32
+ end
34
33
 
35
- # Asserts that the given collection does not contain item x. If x is a regular expression, ensure that
36
- # none of the elements from the collection match x.
37
- def assert_does_not_contain(collection, x, extra_msg = "")
38
- collection = [collection] unless collection.is_a?(Array)
39
- msg = "#{x.inspect} found in #{collection.to_a.inspect} " + extra_msg
40
- case x
41
- when Regexp
42
- assert(!collection.detect { |e| e =~ x }, msg)
43
- else
44
- assert(!collection.include?(x), msg)
45
- end
34
+ # Asserts that the given collection does not contain item x. If x is a regular expression, ensure that
35
+ # none of the elements from the collection match x.
36
+ def assert_does_not_contain(collection, x, extra_msg = "")
37
+ collection = [collection] unless collection.is_a?(Array)
38
+ msg = "#{x.inspect} found in #{collection.to_a.inspect} " + extra_msg
39
+ case x
40
+ when Regexp
41
+ assert(!collection.detect { |e| e =~ x }, msg)
42
+ else
43
+ assert(!collection.include?(x), msg)
46
44
  end
47
45
  end
46
+
47
+ # Asserts that the given matcher returns true when +target+ is passed to #matches?
48
+ def assert_accepts(matcher, target)
49
+ success = matcher.matches?(target)
50
+ assert_block(matcher.failure_message) { success }
51
+ end
52
+
53
+ # Asserts that the given matcher returns false when +target+ is passed to #matches?
54
+ def assert_rejects(matcher, target)
55
+ success = !matcher.matches?(target)
56
+ assert_block(matcher.negative_failure_message) { success }
57
+ end
48
58
  end
49
59
  end
@@ -0,0 +1,46 @@
1
+ module Shoulda # :nodoc:
2
+ # Call autoload_macros when you want to load test macros automatically in a non-Rails
3
+ # project (it's done automatically for Rails projects).
4
+ # You don't need to specify ROOT/test/shoulda_macros explicitly. Your custom macros
5
+ # are loaded automatically when you call autoload_macros.
6
+ #
7
+ # The first argument is the path to you application's root directory.
8
+ # All following arguments are directories relative to your root, which contain
9
+ # shoulda_macros subdirectories. These directories support the same kinds of globs as the
10
+ # Dir class.
11
+ #
12
+ # Basic usage (from a test_helper):
13
+ # Shoulda.autoload_macros(File.dirname(__FILE__) + '/..')
14
+ # will load everything in
15
+ # - your_app/test/shoulda_macros
16
+ #
17
+ # To load vendored macros as well:
18
+ # Shoulda.autoload_macros(APP_ROOT, 'vendor/*')
19
+ # will load everything in
20
+ # - APP_ROOT/vendor/*/shoulda_macros
21
+ # - APP_ROOT/test/shoulda_macros
22
+ #
23
+ # To load macros in an app with a vendor directory laid out like Rails':
24
+ # Shoulda.autoload_macros(APP_ROOT, 'vendor/{plugins,gems}/*')
25
+ # or
26
+ # Shoulda.autoload_macros(APP_ROOT, 'vendor/plugins/*', 'vendor/gems/*')
27
+ # will load everything in
28
+ # - APP_ROOT/vendor/plugins/*/shoulda_macros
29
+ # - APP_ROOT/vendor/gems/*/shoulda_macros
30
+ # - APP_ROOT/test/shoulda_macros
31
+ #
32
+ # If you prefer to stick testing dependencies away from your production dependencies:
33
+ # Shoulda.autoload_macros(APP_ROOT, 'vendor/*', 'test/vendor/*')
34
+ # will load everything in
35
+ # - APP_ROOT/vendor/*/shoulda_macros
36
+ # - APP_ROOT/test/vendor/*/shoulda_macros
37
+ # - APP_ROOT/test/shoulda_macros
38
+ def self.autoload_macros(root, *dirs)
39
+ dirs << File.join('test')
40
+ complete_dirs = dirs.map{|d| File.join(root, d, 'shoulda_macros')}
41
+ all_files = complete_dirs.inject([]){ |files, dir| files + Dir[File.join(dir, '*.rb')] }
42
+ all_files.each do |file|
43
+ require file
44
+ end
45
+ end
46
+ end
@@ -1,26 +1,24 @@
1
- module Thoughtbot # :nodoc:
2
- module Shoulda
3
- VERSION = '2.0.6'
4
-
5
- class << self
6
- attr_accessor :contexts
7
- def contexts # :nodoc:
8
- @contexts ||= []
9
- end
1
+ module Shoulda
2
+ class << self
3
+ attr_accessor :contexts
4
+ def contexts # :nodoc:
5
+ @contexts ||= []
6
+ end
10
7
 
11
- def current_context # :nodoc:
12
- self.contexts.last
13
- end
8
+ def current_context # :nodoc:
9
+ self.contexts.last
10
+ end
14
11
 
15
- def add_context(context) # :nodoc:
16
- self.contexts.push(context)
17
- end
12
+ def add_context(context) # :nodoc:
13
+ self.contexts.push(context)
14
+ end
18
15
 
19
- def remove_context # :nodoc:
20
- self.contexts.pop
21
- end
16
+ def remove_context # :nodoc:
17
+ self.contexts.pop
22
18
  end
19
+ end
23
20
 
21
+ module ClassMethods
24
22
  # == Should statements
25
23
  #
26
24
  # Should statements are just syntactic sugar over normal Test::Unit test methods. A should block
@@ -29,7 +27,7 @@ module Thoughtbot # :nodoc:
29
27
  #
30
28
  # === Example:
31
29
  #
32
- # class UserTest << Test::Unit::TestCase
30
+ # class UserTest < Test::Unit::TestCase
33
31
  #
34
32
  # def setup
35
33
  # @user = User.new("John", "Doe")
@@ -64,7 +62,7 @@ module Thoughtbot # :nodoc:
64
62
  block_given? ? Shoulda.current_context.should(name, options, &blk) : Should.current_context.should_eventually(name)
65
63
  else
66
64
  context_name = self.name.gsub(/Test/, "")
67
- context = Thoughtbot::Shoulda::Context.new(context_name, self) do
65
+ context = Shoulda::Context.new(context_name, self) do
68
66
  block_given? ? should(name, options, &blk) : should_eventually(name)
69
67
  end
70
68
  context.build
@@ -104,7 +102,7 @@ module Thoughtbot # :nodoc:
104
102
  # Just like should, but never runs, and instead prints an 'X' in the Test::Unit output.
105
103
  def should_eventually(name, options = {}, &blk)
106
104
  context_name = self.name.gsub(/Test/, "")
107
- context = Thoughtbot::Shoulda::Context.new(context_name, self) do
105
+ context = Shoulda::Context.new(context_name, self) do
108
106
  should_eventually(name, &blk)
109
107
  end
110
108
  context.build
@@ -118,7 +116,7 @@ module Thoughtbot # :nodoc:
118
116
  #
119
117
  # A context block can contain setup, should, should_eventually, and teardown blocks.
120
118
  #
121
- # class UserTest << Test::Unit::TestCase
119
+ # class UserTest < Test::Unit::TestCase
122
120
  # context "A User instance" do
123
121
  # setup do
124
122
  # @user = User.find(:first)
@@ -135,7 +133,7 @@ module Thoughtbot # :nodoc:
135
133
  # Contexts may be nested. Nested contexts run their setup blocks from out to in before each
136
134
  # should statement. They then run their teardown blocks from in to out after each should statement.
137
135
  #
138
- # class UserTest << Test::Unit::TestCase
136
+ # class UserTest < Test::Unit::TestCase
139
137
  # context "A User instance" do
140
138
  # setup do
141
139
  # @user = User.find(:first)
@@ -168,139 +166,139 @@ module Thoughtbot # :nodoc:
168
166
  if Shoulda.current_context
169
167
  Shoulda.current_context.context(name, &blk)
170
168
  else
171
- context = Thoughtbot::Shoulda::Context.new(name, self, &blk)
169
+ context = Shoulda::Context.new(name, self, &blk)
172
170
  context.build
173
171
  end
174
172
  end
173
+ end
175
174
 
176
- class Context # :nodoc:
177
-
178
- attr_accessor :name # my name
179
- attr_accessor :parent # may be another context, or the original test::unit class.
180
- attr_accessor :subcontexts # array of contexts nested under myself
181
- attr_accessor :setup_blocks # blocks given via setup methods
182
- attr_accessor :teardown_blocks # blocks given via teardown methods
183
- attr_accessor :shoulds # array of hashes representing the should statements
184
- attr_accessor :should_eventuallys # array of hashes representing the should eventually statements
185
-
186
- def initialize(name, parent, &blk)
187
- Shoulda.add_context(self)
188
- self.name = name
189
- self.parent = parent
190
- self.setup_blocks = []
191
- self.teardown_blocks = []
192
- self.shoulds = []
193
- self.should_eventuallys = []
194
- self.subcontexts = []
195
-
196
- merge_block(&blk)
197
- Shoulda.remove_context
198
- end
175
+ class Context # :nodoc:
176
+
177
+ attr_accessor :name # my name
178
+ attr_accessor :parent # may be another context, or the original test::unit class.
179
+ attr_accessor :subcontexts # array of contexts nested under myself
180
+ attr_accessor :setup_blocks # blocks given via setup methods
181
+ attr_accessor :teardown_blocks # blocks given via teardown methods
182
+ attr_accessor :shoulds # array of hashes representing the should statements
183
+ attr_accessor :should_eventuallys # array of hashes representing the should eventually statements
184
+
185
+ def initialize(name, parent, &blk)
186
+ Shoulda.add_context(self)
187
+ self.name = name
188
+ self.parent = parent
189
+ self.setup_blocks = []
190
+ self.teardown_blocks = []
191
+ self.shoulds = []
192
+ self.should_eventuallys = []
193
+ self.subcontexts = []
194
+
195
+ merge_block(&blk)
196
+ Shoulda.remove_context
197
+ end
199
198
 
200
- def merge_block(&blk)
201
- blk.bind(self).call
202
- end
199
+ def merge_block(&blk)
200
+ blk.bind(self).call
201
+ end
203
202
 
204
- def context(name, &blk)
205
- self.subcontexts << Context.new(name, self, &blk)
206
- end
203
+ def context(name, &blk)
204
+ self.subcontexts << Context.new(name, self, &blk)
205
+ end
207
206
 
208
- def setup(&blk)
209
- self.setup_blocks << blk
210
- end
207
+ def setup(&blk)
208
+ self.setup_blocks << blk
209
+ end
211
210
 
212
- def teardown(&blk)
213
- self.teardown_blocks << blk
214
- end
211
+ def teardown(&blk)
212
+ self.teardown_blocks << blk
213
+ end
215
214
 
216
- def should(name, options = {}, &blk)
217
- if block_given?
218
- self.shoulds << { :name => name, :before => options[:before], :block => blk }
219
- else
220
- self.should_eventuallys << { :name => name }
221
- end
222
- end
215
+ def should(name, options = {}, &blk)
216
+ if block_given?
217
+ self.shoulds << { :name => name, :before => options[:before], :block => blk }
218
+ else
219
+ self.should_eventuallys << { :name => name }
220
+ end
221
+ end
223
222
 
224
- def should_eventually(name, &blk)
225
- self.should_eventuallys << { :name => name, :block => blk }
226
- end
223
+ def should_eventually(name, &blk)
224
+ self.should_eventuallys << { :name => name, :block => blk }
225
+ end
227
226
 
228
- def full_name
229
- parent_name = parent.full_name if am_subcontext?
230
- return [parent_name, name].join(" ").strip
231
- end
227
+ def full_name
228
+ parent_name = parent.full_name if am_subcontext?
229
+ return [parent_name, name].join(" ").strip
230
+ end
232
231
 
233
- def am_subcontext?
234
- parent.is_a?(self.class) # my parent is the same class as myself.
235
- end
232
+ def am_subcontext?
233
+ parent.is_a?(self.class) # my parent is the same class as myself.
234
+ end
236
235
 
237
- def test_unit_class
238
- am_subcontext? ? parent.test_unit_class : parent
239
- end
236
+ def test_unit_class
237
+ am_subcontext? ? parent.test_unit_class : parent
238
+ end
240
239
 
241
- def create_test_from_should_hash(should)
242
- test_name = ["test:", full_name, "should", "#{should[:name]}. "].flatten.join(' ').to_sym
240
+ def create_test_from_should_hash(should)
241
+ test_name = ["test:", full_name, "should", "#{should[:name]}. "].flatten.join(' ').to_sym
243
242
 
244
- if test_unit_class.instance_methods.include?(test_name.to_s)
245
- warn " * WARNING: '#{test_name}' is already defined"
246
- end
243
+ if test_unit_class.instance_methods.include?(test_name.to_s)
244
+ warn " * WARNING: '#{test_name}' is already defined"
245
+ end
247
246
 
248
- context = self
249
- test_unit_class.send(:define_method, test_name) do
250
- begin
251
- context.run_parent_setup_blocks(self)
252
- should[:before].bind(self).call if should[:before]
253
- context.run_current_setup_blocks(self)
254
- should[:block].bind(self).call
255
- ensure
256
- context.run_all_teardown_blocks(self)
257
- end
247
+ context = self
248
+ test_unit_class.send(:define_method, test_name) do
249
+ begin
250
+ context.run_parent_setup_blocks(self)
251
+ should[:before].bind(self).call if should[:before]
252
+ context.run_current_setup_blocks(self)
253
+ should[:block].bind(self).call
254
+ ensure
255
+ context.run_all_teardown_blocks(self)
258
256
  end
259
257
  end
258
+ end
260
259
 
261
- def run_all_setup_blocks(binding)
262
- run_parent_setup_blocks(binding)
263
- run_current_setup_blocks(binding)
264
- end
260
+ def run_all_setup_blocks(binding)
261
+ run_parent_setup_blocks(binding)
262
+ run_current_setup_blocks(binding)
263
+ end
265
264
 
266
- def run_parent_setup_blocks(binding)
267
- self.parent.run_all_setup_blocks(binding) if am_subcontext?
268
- end
265
+ def run_parent_setup_blocks(binding)
266
+ self.parent.run_all_setup_blocks(binding) if am_subcontext?
267
+ end
269
268
 
270
- def run_current_setup_blocks(binding)
271
- setup_blocks.each do |setup_block|
272
- setup_block.bind(binding).call
273
- end
269
+ def run_current_setup_blocks(binding)
270
+ setup_blocks.each do |setup_block|
271
+ setup_block.bind(binding).call
274
272
  end
273
+ end
275
274
 
276
- def run_all_teardown_blocks(binding)
277
- teardown_blocks.reverse.each do |teardown_block|
278
- teardown_block.bind(binding).call
279
- end
280
- self.parent.run_all_teardown_blocks(binding) if am_subcontext?
275
+ def run_all_teardown_blocks(binding)
276
+ teardown_blocks.reverse.each do |teardown_block|
277
+ teardown_block.bind(binding).call
281
278
  end
279
+ self.parent.run_all_teardown_blocks(binding) if am_subcontext?
280
+ end
282
281
 
283
- def print_should_eventuallys
284
- should_eventuallys.each do |should|
285
- test_name = [full_name, "should", "#{should[:name]}. "].flatten.join(' ')
286
- puts " * DEFERRED: " + test_name
287
- end
282
+ def print_should_eventuallys
283
+ should_eventuallys.each do |should|
284
+ test_name = [full_name, "should", "#{should[:name]}. "].flatten.join(' ')
285
+ puts " * DEFERRED: " + test_name
288
286
  end
287
+ end
289
288
 
290
- def build
291
- shoulds.each do |should|
292
- create_test_from_should_hash(should)
293
- end
294
-
295
- subcontexts.each { |context| context.build }
296
-
297
- print_should_eventuallys
289
+ def build
290
+ shoulds.each do |should|
291
+ create_test_from_should_hash(should)
298
292
  end
299
293
 
300
- def method_missing(method, *args, &blk)
301
- test_unit_class.send(method, *args, &blk)
302
- end
294
+ subcontexts.each { |context| context.build }
303
295
 
296
+ print_should_eventuallys
304
297
  end
298
+
299
+ def method_missing(method, *args, &blk)
300
+ test_unit_class.send(method, *args, &blk)
301
+ end
302
+
305
303
  end
306
304
  end