runny_test 0.0.2 → 0.0.3
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 +4 -4
- data/README.md +8 -2
- data/lib/runny_test/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0189297bcd973c9b0071f0997d24b7854ca1669c
|
|
4
|
+
data.tar.gz: 6527b4cfc097751a8b3b635263fe99660492e96f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7da3e4af30a6771f5b46395ffb9bee455bf359c9df2e33906e672c39a2034c024e3332235d8ca2ad1353edb7789a7fbe8cae409b60f528aa3ced85238d1a7078
|
|
7
|
+
data.tar.gz: 28d502f6d680a675b18df158ee1739ba2083662374f331cce8153c9a1caa310882a759e7ae1374a7dbd60a84c65cadae2209a3c6690f1163f2e1125cf7666759
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RunnyTest
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This gem allows you to run multiple Ruby unit tests in a single command.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,7 +18,13 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
$ runny <test1> <test2> ...
|
|
22
|
+
|
|
23
|
+
Tests can be either directories or single test files.
|
|
24
|
+
Examples:
|
|
25
|
+
test/foo.rb
|
|
26
|
+
test/
|
|
27
|
+
test/*.rb
|
|
22
28
|
|
|
23
29
|
## Contributing
|
|
24
30
|
|
data/lib/runny_test/version.rb
CHANGED