minitest_visible 0.0.1 → 0.0.2

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTYzMDU0MGI2MTc0MWE5ZDgzOGY2MzRlZTEwNTc3OTg4NDUyZWRiZQ==
4
+ ZGY3MDJmZWQ1YmRmZDU4ZDcyZTk2NDE5YTNhOTYzZjQ1ZTgzZWM1Yw==
5
5
  data.tar.gz: !binary |-
6
- MmE0MDIxZDc0OGJjNTQ3ZTU2MzViMjY3YmUzODBlNzYwN2EwNDU1OA==
6
+ MmE2MTM2ZTI3MDI2NTlmZGI0NzlhYmFhMDE5NGZlZWRkMjUyOGYxMQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTMyODkxNjg0ZGJiYWFhNzAxMDk5MDA3MTFkNWEwZTBjY2E1MTA2ZjY1NmMw
10
- NTkzYjQ1ODYxYTRjM2Q4OTgyODE2ODVmZDEyYTFhOGZhMTY0MjFmMmMxZWRj
11
- NTVmNWJlYmM3MzY0MGRkMDk2MzViYWQ1ODI5ZDMwYTZkNDU3Mjk=
9
+ YjdmMzMwNGJhN2Q3MTE5MWM3ODI4ZjMwNTUxM2Q0YWYyMDYzYTA4OTllNWU3
10
+ ZjM2NmYxNDY1NWFiMDUxM2Q1YzQ2M2Q4OTliZDdkOTI4MmRhZjhlYjEwZWEz
11
+ NDA5NjUyMGUxMTk2MjM3MWFmYTMxNjQwNzFkN2U5MjU0YWMyNWU=
12
12
  data.tar.gz: !binary |-
13
- Y2FmYWRlNmY2YjgzNzAyMWQ0YTJlMjdjMzNkMDZlODZlZTJjYzM0ZjMyMzJh
14
- MDBhMmI2YzFiZTM1YmViMDkzZDVjMGM1YzBhYjA2ZGZlM2I3YjExY2I1OGFj
15
- ZmE4MGRkMDdkYWE0MTg2NzcxN2IxNzVkMGQ0MDk2ZWQ1ODQ0OTU=
13
+ MjhjNjJjNzViZWYzYTkxODNiMjJmZDg5OTczNWFhNGI5Mjk2ZGMwNGYyMmM4
14
+ Y2ZiNjIwMGVmZTkwNjQzN2YxNmEyN2M4MDE3Y2U3NWNjMTgyMmM2ZWY2OTgz
15
+ NTc2MTJhZGQxZDViOWIyY2Y0OTU1NzNjNjQ1MDgwODU3ZjlkMjI=
data/README.md CHANGED
@@ -7,6 +7,47 @@ little gem gives me the warm and fuzzy security blanket of seeing each test's
7
7
  filename as it is run and knowing what version of minitest is in charge without
8
8
  all the chaos of going fully verbose. A sample run follows:
9
9
 
10
+ C:\Sites\fOOrth>rake test
11
+ Run options: --seed 32173
12
+
13
+ # Running tests:
14
+
15
+ MiniTest version = 4.7.5, MinitestVisible version = 0.0.1
16
+
17
+ Running test file: array_test.rb
18
+ .
19
+ Running test file: complex_test.rb
20
+ .
21
+ Running test file: context_tests.rb
22
+ ........
23
+ Running test file: core_tests.rb
24
+ .........
25
+ Running test file: ctrl_stack_tests.rb
26
+ .
27
+ Running test file: data_stack_tests.rb
28
+ .....
29
+ Running test file: file_source_tests.rb
30
+ ....
31
+ Running test file: hash_test.rb
32
+ .
33
+ Running test file: numeric_test.rb
34
+ ..........
35
+ Running test file: object_test.rb
36
+ ...........
37
+ Running test file: parser_tests.rb
38
+ ........
39
+ Running test file: rational_test.rb
40
+ .
41
+ Running test file: string_test.rb
42
+ ...
43
+ Running test file: string_source_tests.rb
44
+ ....
45
+ Running test file: symbol_map_tests.rb
46
+ ...
47
+
48
+ Finished tests in 0.038003s, 1841.9598 tests/s, 11683.2882 assertions/s.
49
+
50
+ 70 tests, 444 assertions, 0 failures, 0 errors, 0 skips
10
51
 
11
52
  ## Installation
12
53
 
@@ -8,8 +8,7 @@ module MinitestVisible
8
8
  action = lambda do |*all|
9
9
  unless defined? $minitest_visible_once_per_run
10
10
  $minitest_visible_once_per_run = :done
11
- puts "MiniTest version = #{MiniTest::Unit::VERSION}, " +
12
- "MinitestVisible version = #{MinitestVisible::VERSION}"
11
+ puts "MiniTest version = #{MiniTest::Unit::VERSION}"
13
12
  end
14
13
 
15
14
  if $minitest_visible_once_per_file != file
@@ -1,4 +1,4 @@
1
1
  module MinitestVisible
2
2
  #The version of this module.
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest_visible
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Camilleri
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-19 00:00:00.000000000 Z
11
+ date: 2015-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler