minitest_visible 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +41 -0
- data/lib/minitest_visible.rb +1 -2
- data/lib/minitest_visible/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGY3MDJmZWQ1YmRmZDU4ZDcyZTk2NDE5YTNhOTYzZjQ1ZTgzZWM1Yw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MmE2MTM2ZTI3MDI2NTlmZGI0NzlhYmFhMDE5NGZlZWRkMjUyOGYxMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjdmMzMwNGJhN2Q3MTE5MWM3ODI4ZjMwNTUxM2Q0YWYyMDYzYTA4OTllNWU3
|
10
|
+
ZjM2NmYxNDY1NWFiMDUxM2Q1YzQ2M2Q4OTliZDdkOTI4MmRhZjhlYjEwZWEz
|
11
|
+
NDA5NjUyMGUxMTk2MjM3MWFmYTMxNjQwNzFkN2U5MjU0YWMyNWU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
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
|
|
data/lib/minitest_visible.rb
CHANGED
@@ -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
|
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.
|
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:
|
11
|
+
date: 2015-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|