minitest 5.3.4 → 5.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9a8da422df56a5f4b68979c5ecf3c54d44d9a3e
4
- data.tar.gz: 596f74d0ab640f1e7158b74dfe21d90415561fc0
3
+ metadata.gz: 6376db419ca9212fa0c347a7ec809ab2a9ff2ef0
4
+ data.tar.gz: 8b7789faff2960ee27c2dbec18fb27798acb2b0b
5
5
  SHA512:
6
- metadata.gz: 519de248622c6de4c785b98cb4197e5e6a6cf86dc66987445dd1d247b8f1f0c11b625eb640d6b171dcf0c80a8be77229481a53d8bef9914ccd7dba0b43512958
7
- data.tar.gz: 9937ee10f24a8c8a5b07eafc3471f54427bffbc43f7b9044d9403c752e06ce4b8327ec82a887b03a7f1af79aef7926b15a10b5e1109741fc5e12a06233eee3de
6
+ metadata.gz: 7e454be77a703a05c58f56114dbbdca34c75a7f14fbe96ed6c0febd299a3d225fb4212974e9a071ba23f8b6983c0387b83053b76538ae42424375b93c0ff1499
7
+ data.tar.gz: 26e272354b4bc8378fabab852c44ec972c7200e45234ebb5f01c497fa5c77a5112897ec18aca03a529a932561b97ded735f133e28d5d7388c436e1e678bc6ab0
@@ -1 +1,2 @@
1
- [��2[n���%HʩH<n@nJ�矩�}%�d��B_KvH�`�TW2�I�|5J%���ydd�����W�����ƣ̗� M���z��ty61���U�Z>�����~�ݟ���7����;-��~��W�}�����yV����k"7�;��p19�)���r���:M��`A��U������”��$�a�~���iyc��{NQ/�I(�<��n���A33�\Q*��Or*m<MX�����
1
+ �CU��8���'��-O'�䤼������y��5dU]OŒ�m9��4Αb�^$�B�"���q�Q�by�͏o<j~e:�r��?�����8k�k�-z��ƭ.�Mx�����@D,�Ks�o?tgJD
2
+ �8;��ߑ��T�$'��pF_޷mX����(���{�u �v��U��@G��3u�`x�y�͉o?1$֙����� Z[��Y���4���
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,9 @@
1
+ === 5.3.5 / 2014-06-17
2
+
3
+ * 1 minor enhancement:
4
+
5
+ * Spit and polish (mostly spit).
6
+
1
7
  === 5.3.4 / 2014-05-15
2
8
 
3
9
  * 1 minor enhancement:
data/README.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  = minitest/{unit,spec,mock,benchmark}
2
2
 
3
3
  home :: https://github.com/seattlerb/minitest
4
+ bugs :: https://github.com/seattlerb/minitest/issues
4
5
  rdoc :: http://docs.seattlerb.org/minitest
5
6
  vim :: https://github.com/sunaku/vim-ruby-minitest
6
7
  emacs:: https://github.com/arthurnn/minitest-emacs
@@ -232,6 +233,37 @@ new non-existing method:
232
233
  ...
233
234
  end
234
235
 
236
+ === Running Your Tests
237
+
238
+ Ideally, you'll use a rake task to run your tests, either piecemeal or
239
+ all at once. Both rake and rails ship with rake tasks for running your
240
+ tests. BUT! You don't have to:
241
+
242
+ % ruby -Ilib:test test/minitest/test_minitest_unit.rb
243
+ Run options: --seed 37685
244
+
245
+ # Running:
246
+
247
+ ...................................................................... (etc)
248
+
249
+ Finished in 0.107130s, 1446.8403 runs/s, 2959.0217 assertions/s.
250
+
251
+ 155 runs, 317 assertions, 0 failures, 0 errors, 0 skips
252
+
253
+ There are runtime options available, both from minitest itself, and also
254
+ provided via plugins. To see them, simply run with `--help`:
255
+
256
+ % ruby -Ilib:test test/minitest/test_minitest_unit.rb --help
257
+ minitest options:
258
+ -h, --help Display this help.
259
+ -s, --seed SEED Sets random seed
260
+ -v, --verbose Verbose. Show progress processing files.
261
+ -n, --name PATTERN Filter run on /pattern/ or string.
262
+
263
+ Known extensions: pride, autotest
264
+ -p, --pride Pride. Show your testing pride!
265
+ -a, --autotest Connect to autotest server.
266
+
235
267
  == Writing Extensions
236
268
 
237
269
  To define a plugin, add a file named minitest/XXX_plugin.rb to your
@@ -436,6 +468,8 @@ minitest-must_not :: Provides must_not as an alias for wont in
436
468
  Minitest.
437
469
  minitest-nc :: Test notifier for minitest via Mountain Lion's
438
470
  Notification Center.
471
+ minitest-parallel-db :: Run tests in parallel with a single database.
472
+ minitest-power_assert :: PowerAssert for Minitest.
439
473
  minitest-predicates :: Adds support for .predicate? methods.
440
474
  minitest-rails :: Minitest integration for Rails 3.x.
441
475
  minitest-rails-capybara :: Capybara integration for Minitest::Rails.
@@ -7,7 +7,7 @@ require "minitest/parallel"
7
7
  # :include: README.txt
8
8
 
9
9
  module Minitest
10
- VERSION = "5.3.4" # :nodoc:
10
+ VERSION = "5.3.5" # :nodoc:
11
11
 
12
12
  @@installed_at_exit ||= false
13
13
  @@after_run = []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.4
4
+ version: 5.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -29,7 +29,7 @@ cert_chain:
29
29
  Y4evBVezr3SjXz08vPqRO5YRdO3zfeMT8gBjRqZjWJGMZ2lD4XNfrs7eky74CyZw
30
30
  xx3n58i0lQkBE1EpKE0lFu/y
31
31
  -----END CERTIFICATE-----
32
- date: 2014-05-15 00:00:00.000000000 Z
32
+ date: 2014-06-18 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rdoc
metadata.gz.sig CHANGED
Binary file