shared_should 0.5.6 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -16,25 +16,25 @@ Sharing shoulds is easy.
16
16
  setup { @book = Book.new(:quantity => 1, :price => 10_00 }
17
17
 
18
18
  ### Define a shared should
19
- shared_should_be "available for checkout" { assert @book.available_for_checkout? }
19
+ share_should "be available for checkout" { assert @book.available_for_checkout? }
20
20
 
21
21
  context "with a rentable book" do
22
22
  setup { @book.rentable = true }
23
23
 
24
- ### Use the "available for checkout" shared_should
25
- should_be "available for checkout"
24
+ ### Use the "be available for checkout" share_should
25
+ use_should "be available for checkout"
26
26
  end
27
27
 
28
28
  context "with a purchasable book" do
29
29
  setup { @book.purchasable = true }
30
30
 
31
- ### Use the "available for checkout" shared_should in this context too
32
- should_be "available for checkout"
31
+ ### Use the "be available for checkout" share_should in this context too
32
+ use_should "be available for checkout"
33
33
  end
34
34
 
35
35
  ### ...or DRY it up by using .with or .when and an initialization block
36
- should_be("available for checkout").when("rentable") { @book.rentable = true }
37
- should_be("available for checkout").when("purchasable") { @book.purchasable = true }
36
+ use_should("be available for checkout").when("rentable") { @book.rentable = true }
37
+ use_should("be available for checkout").when("purchasable") { @book.purchasable = true }
38
38
  end
39
39
  end
40
40
 
@@ -44,11 +44,11 @@ Sharing setups is easy, too.
44
44
 
45
45
  context "Book" do
46
46
  ### Define a shared setup
47
- shared_setup_for "an in-stock book" { @book = Book.new(:quantity => 1, :price => 10_00) }
47
+ share_setup "for an in-stock book" { @book = Book.new(:quantity => 1, :price => 10_00) }
48
48
 
49
49
  context "with an in-stock rentable book" do
50
50
  ### Use the shared setup here
51
- setup_for "an in-stock book"
51
+ use_setup "for an in-stock book"
52
52
 
53
53
  ### Do some additional setup after the shared setup
54
54
  setup { @book.rentable = true }
@@ -58,7 +58,7 @@ Sharing setups is easy, too.
58
58
 
59
59
  context "with an in-stock purchasable book" do
60
60
  ### Use the shared setup again
61
- setup_for "an in-stock book"
61
+ use_setup "for an in-stock book"
62
62
 
63
63
  setup { @book.purchasable = true }
64
64
 
@@ -75,7 +75,7 @@ Sharing whole contexts? Schmeasy!
75
75
  setup { @book = Book.new(:quantity => 1, :price => 10_00) }
76
76
 
77
77
  ### Define a shared context
78
- shared_context_for "a book available for checkout" do
78
+ share_context "for a book available for checkout" do
79
79
  should "be in stock" { assert @book.quantity > 0 }
80
80
  should "have a non-negative price" { assert @book.price > 0 }
81
81
  should "be rentable or purchasable" { assert @book.rentable || @book.purchasable }
@@ -85,19 +85,19 @@ Sharing whole contexts? Schmeasy!
85
85
  setup { @book.rentable = true }
86
86
 
87
87
  ### Run the shoulds inside the shared context with a rentable book
88
- should_be "a book available for checkout"
88
+ use_context "for a book available for checkout"
89
89
  end
90
90
 
91
91
  context "with a purchasable book" do
92
92
  setup { @book.purchasable = true }
93
93
 
94
94
  ### Run the shoulds inside the shared context again with a purchasable book
95
- should_be "a book available for checkout"
95
+ use_context "for a book available for checkout"
96
96
  end
97
97
 
98
98
  ### ...or DRY it up by using .with or .when and an initialization block
99
- should_be("a book available for checkout").when("rentable") { @book.rentable = true }
100
- should_be("a book available for checkout").when("purchasable") { @book.purchasable = true }
99
+ use_context("for a book available for checkout").when("rentable") { @book.rentable = true }
100
+ use_context("for a book available for checkout").when("purchasable") { @book.purchasable = true }
101
101
  end
102
102
  end
103
103
 
@@ -106,7 +106,7 @@ Sharing whole contexts? Schmeasy!
106
106
  === Finding Your Share
107
107
 
108
108
  Some rules:
109
- * When <tt>should_be</tt> or <tt>setup_for</tt> is invoked, it searches up the context hierarchy to find a matching shared definition.
109
+ * When <tt>use_should</tt>, <tt>use_context</tt> or <tt>use_setup</tt> is invoked, it searches up the context hierarchy to find a matching shared definition.
110
110
  * You can redefine your shares by using the same name. These shares will only be available in in the current and descendant contexts.
111
111
  * Shares defined at the root (on your TestCase) are available in all contexts.
112
112
  * If you define a shared setup at the root level, you will need to call <tt>super</tt> if you have a setup instance method for your test.
@@ -118,15 +118,15 @@ The shared invocation accepts an initialization block by chaining <tt>when</tt>
118
118
  context "Book" do
119
119
  setup { @book = Book.new(:quantity => 1, :price => 10_00) }
120
120
 
121
- shared_should_be "available for checkout" { assert @book.available_for_checkout? }
121
+ share_should "be available for checkout" { assert @book.available_for_checkout? }
122
122
 
123
123
  context "with a rentable book" do
124
- # when shared_should_be "available for checkout" is executed, @book will have rentable equal to true
125
- should_be "available for checkout".when("rentable") { @book.rentable = true }
124
+ # when share_should "be available for checkout" is executed, @book will have rentable equal to true
125
+ use_should "be available for checkout".when("rentable") { @book.rentable = true }
126
126
  end
127
127
 
128
128
  context "with a purchasable book" do
129
- should_be "available for checkout".when("purchasable") { @book.purchasable = true }
129
+ use_should "be available for checkout".when("purchasable") { @book.purchasable = true }
130
130
  end
131
131
  end
132
132
 
@@ -135,13 +135,13 @@ The shared invocation accepts an initialization block by chaining <tt>when</tt>
135
135
  Shared functions can also be parameterized using block parameters. This can be done for shared setups, shoulds, and the setups and shoulds contained within a shared context. The value passed to the declared shared function is the return value of the initialization block. The below example parameterizes a shared setup.
136
136
 
137
137
  context "Book" do
138
- shared_setup_for "an in-stock book" do |rentable|
138
+ share_setup "for an in-stock book" do |rentable|
139
139
  @book = Book.new(:quantity => 1, :price => 10_00, :rentable => rentable, :purchasable => false)
140
140
  end
141
141
 
142
142
  context "with rentable book" do
143
143
  # the return value of the block is "true" which will be passed as the block parameter "rentable"
144
- setup_for("an in-stock book").with("a rentable book") { true }
144
+ use_setup("for an in-stock book").with("a rentable book") { true }
145
145
 
146
146
  should "be available for checkout" { assert @book.available_for_checkout? }
147
147
  end
@@ -153,13 +153,13 @@ Here is a parameterized shared should.
153
153
  context "with in-stock book" do
154
154
  setup { @book = Book.new(:quantity => 1) }
155
155
 
156
- shared_should_be "unavailable for checkout for price" do |price|
156
+ share_should "be unavailable for checkout for price" do |price|
157
157
  @book.price = price
158
158
  assert_false @book.available_for_checkout?
159
159
  end
160
160
 
161
- should_be("unavailable for checkout for price").when("zero") { 0 }
162
- should_be("unavailable for checkout for price").when("negative") { -1 }
161
+ use_should("be unavailable for checkout for price").when("zero") { 0 }
162
+ use_should("be unavailable for checkout for price").when("negative") { -1 }
163
163
  end
164
164
  end
165
165
 
@@ -169,7 +169,7 @@ And a parameterized shared context.
169
169
  context "with in-stock book" do
170
170
  setup { @book = Book.new(:quantity => 1) }
171
171
 
172
- shared_context_for "a book available for checkout at price" do
172
+ share_context "for a book available for checkout at price" do
173
173
  # parameters are on the setup and shoulds, not on the context
174
174
  setup { |price| @book.price = price }
175
175
 
@@ -179,7 +179,7 @@ And a parameterized shared context.
179
179
  should "be rentable or purchasable" { assert @book.rentable || @book.purchasable }
180
180
  end
181
181
 
182
- should_be("a book available for checkout at price").when("positive") { 10_00 }
182
+ use_context("for a book available for checkout at price").when("positive") { 10_00 }
183
183
  end
184
184
  end
185
185
 
@@ -189,14 +189,14 @@ The shared functions also accept multiple parameters when the initialization blo
189
189
  context "with rentable book" do
190
190
  setup { @book = Book.new(:rentable => true) }
191
191
 
192
- shared_should_be "unavailable for checkout for quantity and price" do |quantity, price|
192
+ share_should "be unavailable for checkout for quantity and price" do |quantity, price|
193
193
  @book.quantity = quantity
194
194
  @book.price = price
195
195
  assert_false @book.available_for_checkout?
196
196
  end
197
197
 
198
- should_be("unavailable for checkout for quantity and price").when("zero quantity") { [0, 10_00] }
199
- should_be("unavailable for checkout for quantity and price").when("zero price") { [1, 0] }
198
+ use_should("be unavailable for checkout for quantity and price").when("zero quantity") { [0, 10_00] }
199
+ use_should("be unavailable for checkout for quantity and price").when("zero price") { [1, 0] }
200
200
  end
201
201
  end
202
202
 
@@ -207,7 +207,7 @@ The shared functions can also be re-usable across multiple test cases.
207
207
  In your test helper file:
208
208
 
209
209
  class Test::Unit::TestCase
210
- shared_setup_for "an in-stock book" do |rentable, purchasable|
210
+ share_setup "for an in-stock book" do |rentable, purchasable|
211
211
  @book = Book.new(:quantity => 1, :price => 10_00, :rentable => rentable, :purchasable => purchasable)
212
212
  end
213
213
  end
@@ -216,7 +216,7 @@ In your test file:
216
216
 
217
217
  class BookTest < Test::Unit::TestCase
218
218
  context "with an in-stock book" do
219
- shared_setup_for "an in-stock book".with { [true, true] }
219
+ share_setup "for an in-stock book".with { [true, true] }
220
220
 
221
221
  should "be in stock" { assert @book.quantity > 0 }
222
222
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.6
1
+ 0.6.0
data/lib/shared_should.rb CHANGED
@@ -99,25 +99,23 @@ module Shoulda::SharedContext
99
99
  end
100
100
 
101
101
  module SharedContextMethods
102
- def shared_context_blocks
103
- @shared_context_blocks ||= {}
104
- end
105
-
106
- def shared_setup_blocks
107
- @shared_setup_blocks ||= {}
108
- end
109
-
110
102
  def shared_proxies
111
103
  @shared_proxies ||= []
112
104
  end
113
105
 
114
- def should_be(shared_name)
106
+ def use_should(shared_name)
115
107
  shared_proxy = Shoulda::SharedProxy.new(shared_name)
116
108
  shared_proxies << shared_proxy
117
109
  return shared_proxy
118
110
  end
119
-
120
- def setup_for(shared_name)
111
+
112
+ def use_context(shared_name)
113
+ shared_proxy = Shoulda::SharedProxy.new(shared_name)
114
+ shared_proxies << shared_proxy
115
+ return shared_proxy
116
+ end
117
+
118
+ def use_setup(shared_name)
121
119
  shared_proxy = Shoulda::SharedProxy.new(shared_name)
122
120
  shared_setup_block = find_shared_setup_block(shared_name)
123
121
  setup do
@@ -163,13 +161,14 @@ module Shoulda::SharedContext
163
161
  end
164
162
  end
165
163
 
164
+ # deprecated
166
165
  def shared_context_should(shared_context_name, &shared_context_block)
167
- shared_context_for(shared_context_name, &shared_context_block)
166
+ share_context(shared_context_name, &shared_context_block)
168
167
  end
169
168
 
170
- def shared_context_for(shared_context_name, &shared_context_block)
169
+ def share_context(shared_context_name, &shared_context_block)
171
170
  wrapping_shared_context_block = Proc.new do
172
- context "for #{shared_context_name}" do
171
+ context shared_context_name do
173
172
  merge_block(&shared_context_block)
174
173
  end
175
174
  end
@@ -177,13 +176,14 @@ module Shoulda::SharedContext
177
176
  do_shared_context(shared_context_name, shared_context_for_block(shared_context_block), &wrapping_shared_context_block)
178
177
  end
179
178
 
179
+ # deprecated
180
180
  def shared_should(shared_should_name, &shared_should_block)
181
- shared_should_be(shared_should_name, &shared_should_block)
181
+ share_should(shared_should_name, &shared_should_block)
182
182
  end
183
183
 
184
- def shared_should_be(shared_should_name, &shared_should_block)
184
+ def share_should(shared_should_name, &shared_should_block)
185
185
  shared_context_block = Proc.new do
186
- should "be #{shared_should_name}" do
186
+ should shared_should_name do
187
187
  call_block_with_shared_value(shared_should_block)
188
188
  end
189
189
  end
@@ -191,6 +191,7 @@ module Shoulda::SharedContext
191
191
  do_shared_context(shared_should_name, shared_context_for_block(shared_should_block), &shared_context_block)
192
192
  end
193
193
 
194
+ # deprecated
194
195
  def shared_setup(shared_name, &setup_block)
195
196
  shared_setup_block = Proc.new do
196
197
  call_block_with_shared_value(setup_block)
@@ -199,7 +200,7 @@ module Shoulda::SharedContext
199
200
  do_shared_setup(shared_name, shared_context_for_block(setup_block), &shared_setup_block)
200
201
  end
201
202
 
202
- def shared_setup_for(shared_name, &setup_block)
203
+ def share_setup(shared_name, &setup_block)
203
204
  current_context = eval('self', setup_block.binding)
204
205
  Test::Unit::TestCase.shared_context_block_owner(current_context).shared_setup_blocks[shared_name] = setup_block
205
206
  end
@@ -208,6 +209,10 @@ module Shoulda::SharedContext
208
209
  @shared_context_blocks ||= {}
209
210
  end
210
211
 
212
+ def shared_should_blocks
213
+ @shared_should_blocks ||= {}
214
+ end
215
+
211
216
  def shared_setup_blocks
212
217
  @shared_setup_blocks ||= {}
213
218
  end
@@ -286,11 +291,11 @@ module Shoulda::SharedContext
286
291
  if shared_setup_block = Test::Unit::TestCase.shared_context_block_owner(current_context).shared_setup_blocks[shared_name]
287
292
  return shared_setup_block
288
293
  end
289
- raise "Unable to find shared_setup_for('#{shared_name}')" if current_context.kind_of?(Class)
294
+ raise "Unable to find share_setup('#{shared_name}')" if current_context.kind_of?(Class)
290
295
  break unless current_context.kind_of?(Shoulda::Context)
291
296
  current_context = current_context.parent
292
297
  end
293
- raise "Unable to find shared_setup_for('#{shared_name}')"
298
+ raise "Unable to find share_setup('#{shared_name}')"
294
299
  end
295
300
  end
296
301
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{shared_should}
8
- s.version = "0.5.6"
8
+ s.version = "0.6.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Michael Pearce"]
@@ -11,9 +11,9 @@ class TestSharedShould < Test::Unit::TestCase
11
11
  assert @setup_instance_method_executed
12
12
  end
13
13
 
14
- context ".shared_context_for" do
14
+ context ".share_context" do
15
15
  context "without params" do
16
- shared_context_for "a valid value" do
16
+ share_context "for a valid value" do
17
17
  setup do
18
18
  @context_value = true
19
19
  end
@@ -32,11 +32,11 @@ class TestSharedShould < Test::Unit::TestCase
32
32
  @value = true
33
33
  end
34
34
 
35
- should_be("a valid value")
35
+ use_context "for a valid value"
36
36
  end
37
37
 
38
38
  context "with value in initializer" do
39
- should_be("a valid value").when("a true value") { @value = true }
39
+ use_context("for a valid value").when("a true value") { @value = true }
40
40
  end
41
41
  end
42
42
 
@@ -45,7 +45,7 @@ class TestSharedShould < Test::Unit::TestCase
45
45
  @value = true
46
46
  end
47
47
 
48
- shared_context_for "a valid specified value" do
48
+ share_context "for a valid specified value" do
49
49
  setup do |value|
50
50
  @expected_value = value
51
51
  @context_value = true
@@ -64,10 +64,10 @@ class TestSharedShould < Test::Unit::TestCase
64
64
  end
65
65
  end
66
66
 
67
- should_be("a valid specified value").when("true") { true }
67
+ use_context("for a valid specified value").when("true") { true }
68
68
  end
69
69
  end
70
-
70
+
71
71
  context ".shared_context_should" do
72
72
  context "without params" do
73
73
  setup do
@@ -119,9 +119,9 @@ class TestSharedShould < Test::Unit::TestCase
119
119
  end
120
120
  end
121
121
 
122
- context ".shared_should_be" do
122
+ context ".share_should" do
123
123
  context "without params" do
124
- shared_should_be "a true value" do
124
+ share_should "be a true value" do
125
125
  assert @value
126
126
  end
127
127
 
@@ -130,15 +130,15 @@ class TestSharedShould < Test::Unit::TestCase
130
130
  @value = true
131
131
  end
132
132
 
133
- should_be("a true value")
133
+ use_should "be a true value"
134
134
  end
135
135
 
136
136
  context "when value in initializer" do
137
- should_be("a true value").when("value is true") { @value = true }
137
+ use_should("be a true value").when("value is true") { @value = true }
138
138
  end
139
139
 
140
140
  context "with value in initializer" do
141
- should_be("a true value").with("true value") { @value = true }
141
+ use_should("be a true value").with("true value") { @value = true }
142
142
  end
143
143
  end
144
144
 
@@ -147,11 +147,11 @@ class TestSharedShould < Test::Unit::TestCase
147
147
  @value = true
148
148
  end
149
149
 
150
- shared_should_be "a valid specified value" do |value|
150
+ share_should "be a valid specified value" do |value|
151
151
  assert_equal value, @value
152
152
  end
153
153
 
154
- should_be("a valid specified value").when("true") { true }
154
+ use_should("be a valid specified value").when("true") { true }
155
155
  end
156
156
  end
157
157
 
@@ -219,7 +219,7 @@ class TestSharedShould < Test::Unit::TestCase
219
219
  end
220
220
  end
221
221
 
222
- context ".shared_setup_for" do
222
+ context ".share_setup" do
223
223
  context "without params" do
224
224
  context "without initialization block" do
225
225
  setup do
@@ -227,11 +227,11 @@ class TestSharedShould < Test::Unit::TestCase
227
227
  @value = false
228
228
  end
229
229
 
230
- shared_setup_for "true value" do
230
+ share_setup "for true value" do
231
231
  @value = true
232
232
  end
233
233
 
234
- setup_for("true value")
234
+ use_setup("for true value")
235
235
 
236
236
  should "have a true value from shared setup" do
237
237
  assert @value
@@ -244,11 +244,11 @@ class TestSharedShould < Test::Unit::TestCase
244
244
  @value = false
245
245
  end
246
246
 
247
- shared_setup_for "value" do
247
+ share_setup "for value" do
248
248
  @value = @initialization_value
249
249
  end
250
250
 
251
- setup_for("value").when("initialization value is true") { @initialization_value = true }
251
+ use_setup("for value").with("true initialization value") { @initialization_value = true }
252
252
 
253
253
  should "have a true value from shared setup" do
254
254
  assert @value
@@ -257,7 +257,7 @@ class TestSharedShould < Test::Unit::TestCase
257
257
  end
258
258
 
259
259
  context "with parameterized initialization block" do
260
- shared_setup_for "value" do |value|
260
+ share_setup "for value" do |value|
261
261
  @value = value
262
262
  end
263
263
 
@@ -267,7 +267,7 @@ class TestSharedShould < Test::Unit::TestCase
267
267
  @value = false
268
268
  end
269
269
 
270
- setup_for("value").when("initialization value is true") { true }
270
+ use_setup("for value").with("true initialization value") { true }
271
271
 
272
272
  should "have a true value from shared setup" do
273
273
  assert @value
@@ -319,47 +319,47 @@ class TestSharedShould < Test::Unit::TestCase
319
319
  end
320
320
 
321
321
  context "context directly under test class" do
322
- shared_setup_for("a true value") do
322
+ share_setup "for a true value" do
323
323
  @value = true
324
324
  end
325
325
 
326
- shared_should_be("a valid should test") do
326
+ share_should "be a valid should test" do
327
327
  assert @value
328
328
  end
329
329
 
330
- shared_context_for("a valid context test") do
330
+ share_context "for a valid context test" do
331
331
  should "have a true value" do
332
332
  assert @value
333
333
  end
334
334
  end
335
-
336
- setup_for("a true value")
335
+
336
+ use_setup "for a true value"
337
337
 
338
- should_be("a valid should test")
338
+ use_should "be a valid should test"
339
339
 
340
- should_be("a valid context test")
340
+ use_context "for a valid context test"
341
341
  end
342
342
 
343
343
  # test class as context
344
- shared_setup_for("a true value in class") do
344
+ share_setup "for a true value in class" do
345
345
  @class_value = true
346
346
  end
347
347
 
348
- shared_should_be("a valid should test in class") do
348
+ share_should "be a valid should test in class" do
349
349
  assert @class_value
350
350
  end
351
351
 
352
- shared_context_for("a valid context test in class") do
352
+ share_context "for a valid context test in class" do
353
353
  should "have a true value" do
354
354
  assert @class_value
355
355
  end
356
356
  end
357
-
358
- setup_for("a true value in class")
359
357
 
360
- should_be("a valid should test in class")
358
+ use_setup "for a true value in class"
359
+
360
+ use_should "be a valid should test in class"
361
361
 
362
- should_be("a valid context test in class")
362
+ use_context "for a valid context test in class"
363
363
 
364
364
 
365
365
  # ensure should macros work
@@ -394,36 +394,36 @@ class TestSharedShould < Test::Unit::TestCase
394
394
 
395
395
  # ensure test methods are created
396
396
  expected_method_names = [
397
- "test: .shared_context_for with params when true for a valid specified value should call setup in shared context. ",
398
- "test: .shared_context_for with params when true for a valid specified value should call setup in shared context. ",
399
- "test: .shared_context_for with params when true for a valid specified value should have specified value. ",
400
- "test: .shared_context_for with params when true for a valid specified value should setup @expected_value. ",
401
- "test: .shared_context_for without params with value in initializer when a true value for a valid value should call setup in shared context. ",
402
- "test: .shared_context_for without params with value in initializer when a true value for a valid value should have true value. ",
403
- "test: .shared_context_for without params with value in setup for a valid value should call setup in shared context. ",
404
- "test: .shared_context_for without params with value in setup for a valid value should have true value. ",
405
- "test: .shared_context_should with params for be valid for specified value should call setup in shared context. ",
406
- "test: .shared_context_should with params for be valid for specified value should have specified value. ",
407
- "test: .shared_context_should with params for be valid for specified value should setup @expected_value. ",
408
- "test: .shared_context_should without params for be valid should call setup in shared context. ",
409
- "test: .shared_context_should without params for be valid should have true value. ",
397
+ "test: .share_context with params when true for a valid specified value should call setup in shared context. ",
398
+ "test: .share_context with params when true for a valid specified value should call setup in shared context. ",
399
+ "test: .share_context with params when true for a valid specified value should have specified value. ",
400
+ "test: .share_context with params when true for a valid specified value should setup @expected_value. ",
401
+ "test: .share_context without params with value in initializer when a true value for a valid value should call setup in shared context. ",
402
+ "test: .share_context without params with value in initializer when a true value for a valid value should have true value. ",
403
+ "test: .share_context without params with value in setup for a valid value should call setup in shared context. ",
404
+ "test: .share_context without params with value in setup for a valid value should have true value. ",
405
+ "test: .shared_context_should with params be valid for specified value should call setup in shared context. ",
406
+ "test: .shared_context_should with params be valid for specified value should have specified value. ",
407
+ "test: .shared_context_should with params be valid for specified value should setup @expected_value. ",
408
+ "test: .shared_context_should without params be valid should call setup in shared context. ",
409
+ "test: .shared_context_should without params be valid should have true value. ",
410
410
  "test: .shared_setup with params with shared setup value should have a true value from shared setup. ",
411
411
  "test: .shared_setup without params with shared setup value should have a true value from shared setup. ",
412
- "test: .shared_setup_for with parameterized initialization block with shared setup value should have a true value from shared setup. ",
413
- "test: .shared_setup_for without params with initialization block should have a true value from shared setup. ",
414
- "test: .shared_setup_for without params without initialization block should have a true value from shared setup. ",
415
- "test: .shared_should with params should be have specified value. ",
416
- "test: .shared_should without params should be have true value. ",
417
- "test: .shared_should_be with params when true should be a valid specified value. ",
418
- "test: .shared_should_be without params when value in initializer when value is true should be a true value. ",
419
- "test: .shared_should_be without params with value in initializer with true value should be a true value. ",
420
- "test: .shared_should_be without params with value in setup should be a true value. ",
412
+ "test: .share_setup with parameterized initialization block with shared setup value should have a true value from shared setup. ",
413
+ "test: .share_setup without params with initialization block should have a true value from shared setup. ",
414
+ "test: .share_setup without params without initialization block should have a true value from shared setup. ",
415
+ "test: .shared_should with params should have specified value. ",
416
+ "test: .shared_should without params should have true value. ",
417
+ "test: .share_should with params when true should be a valid specified value. ",
418
+ "test: .share_should without params when value in initializer when value is true should be a true value. ",
419
+ "test: .share_should without params with value in initializer with true value should be a true value. ",
420
+ "test: .share_should without params with value in setup should be a true value. ",
421
421
  "test: context directly under test class for a valid context test should have a true value. ",
422
422
  "test: context directly under test class should be a valid should test. ",
423
- "test: parameterized block with an array for be valid with shared context should do something with shared_value. ",
424
- "test: parameterized block with an array for be valid with shared context should do something with value block param. ",
425
- "test: parameterized block with an array for be valid with shared context should do something with value block params. ",
426
- "test: parameterized block with an array should be be valid with shared should. ",
423
+ "test: parameterized block with an array be valid with shared context should do something with shared_value. ",
424
+ "test: parameterized block with an array be valid with shared context should do something with value block param. ",
425
+ "test: parameterized block with an array be valid with shared context should do something with value block params. ",
426
+ "test: parameterized block with an array should be valid with shared should. ",
427
427
  "test: should be a valid should test in class. ",
428
428
  "test: for a valid context test in class should have a true value. ",
429
429
  "test: SharedShould should execute setup instance method. ",
@@ -6,7 +6,7 @@ class SubclassTestCase < Test::Unit::TestCase
6
6
  assert @value
7
7
  end
8
8
 
9
- shared_should_be "a true value for shared should helper" do
9
+ share_should "be a true value for shared should helper" do
10
10
  assert @value
11
11
  end
12
12
 
@@ -23,7 +23,7 @@ class Test::Unit::TestCase
23
23
  end
24
24
  end
25
25
 
26
- shared_context_for "a true value for shared context helper" do
26
+ share_context "for a true value for shared context helper" do
27
27
  should "be true value" do
28
28
  assert @value
29
29
  end
@@ -33,7 +33,7 @@ class Test::Unit::TestCase
33
33
  @value = true
34
34
  end
35
35
 
36
- shared_setup_for "a true value for shared setup helper" do
36
+ share_setup "for a true value for shared setup helper" do
37
37
  @value = true
38
38
  end
39
39
  end
@@ -47,7 +47,7 @@ class TestSharedShouldHelper < SubclassTestCase
47
47
 
48
48
  should_have_true_value_for_shared_should_helper
49
49
 
50
- should_be("a true value for shared should helper")
50
+ use_should "be a true value for shared should helper"
51
51
  end
52
52
 
53
53
  context "with shared context helper" do
@@ -57,7 +57,7 @@ class TestSharedShouldHelper < SubclassTestCase
57
57
 
58
58
  should_be_valid_for_shared_context_helper
59
59
 
60
- should_be("a true value for shared context helper")
60
+ use_context "for a true value for shared context helper"
61
61
  end
62
62
 
63
63
  context "with shared_setup helper" do
@@ -68,8 +68,8 @@ class TestSharedShouldHelper < SubclassTestCase
68
68
  end
69
69
  end
70
70
 
71
- context "with shared_setup_for helper" do
72
- setup_for("a true value for shared setup helper")
71
+ context "with share_setup helper" do
72
+ use_setup "for a true value for shared setup helper"
73
73
 
74
74
  should "be true value" do
75
75
  assert @value
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 5
9
8
  - 6
10
- version: 0.5.6
9
+ - 0
10
+ version: 0.6.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Pearce