tf 0.4.4 → 0.4.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 +5 -5
- data/LICENSE +0 -0
- data/README.md +2 -2
- data/lib/plugins/tf/comment_test_input.rb +0 -0
- data/lib/plugins/tf/env_arr_test.rb +0 -0
- data/lib/plugins/tf/env_match_test.rb +0 -0
- data/lib/plugins/tf/env_type_test.rb +0 -0
- data/lib/plugins/tf/error_summary_output.rb +0 -0
- data/lib/plugins/tf/output_match_test.rb +0 -0
- data/lib/plugins/tf/stats_output.rb +0 -0
- data/lib/plugins/tf/status_test.rb +0 -0
- data/lib/plugins/tf/text_output.rb +0 -0
- data/lib/tf/active_patches.rb +0 -0
- data/lib/tf/environment.rb +0 -0
- data/lib/tf/plugins.rb +0 -0
- metadata +19 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 6905c6f3c68ba29e229b713c65a14cff023a1ba1d6ca8e2f45c36a55317afb86
|
|
4
|
+
data.tar.gz: 1e8beea5ba30843166f44ca90605ea3984cee211cf9dd66164435e40b1323f23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9256844d8c711a48d4f927526d182fd6ac1ea674ad859ded444c842b19314ce7f9a73a588a24f8989bddf362328bbc1816cc9f73ab4d002596c7f8ce71c61b10
|
|
7
|
+
data.tar.gz: 74519dd4dd3f228df43e55c9413a6f6f2083bb20ffd6e6ae182e23ef5cdb6add483d1f73e3c2fb940ee0fefac9a513bb90eb98233ba4497b3aca1b178a624be1
|
data/LICENSE
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Testing Framework [](https://codeclimate.com/github/mpapis/tf)
|
|
1
|
+
# Testing Framework [](https://codeclimate.com/github/mpapis/tf) [](https://travis-ci.org/rvm/tf)
|
|
2
2
|
|
|
3
3
|
TF is a pluggable framework for testing shell scripts (at least now).
|
|
4
4
|
TF also is an umbrella which incorporates (eventually) multiple gems, each of which provides additional functionality
|
|
@@ -18,7 +18,7 @@ Filename has to end with `_comment_test.sh`
|
|
|
18
18
|
Example test file:
|
|
19
19
|
|
|
20
20
|
## User comments start with double #
|
|
21
|
-
## command can be
|
|
21
|
+
## command can be written in one line with multiple tests:
|
|
22
22
|
true # status=0; match=/^$/
|
|
23
23
|
## or tests can be placed in following lines:
|
|
24
24
|
false
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/tf/active_patches.rb
CHANGED
|
File without changes
|
data/lib/tf/environment.rb
CHANGED
|
File without changes
|
data/lib/tf/plugins.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Papis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: session
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '3.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: minitest
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '5'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '5'
|
|
27
41
|
description: Testing Framework solely based on plugins. For now only tests using Bash.
|
|
28
42
|
email: mpapis+tf@gmail.com
|
|
29
43
|
executables:
|
|
@@ -48,7 +62,8 @@ files:
|
|
|
48
62
|
- lib/tf/environment.rb
|
|
49
63
|
- lib/tf/plugins.rb
|
|
50
64
|
homepage: http://github.com/mpapis/tf
|
|
51
|
-
licenses:
|
|
65
|
+
licenses:
|
|
66
|
+
- Apache-2.0
|
|
52
67
|
metadata: {}
|
|
53
68
|
post_install_message:
|
|
54
69
|
rdoc_options: []
|
|
@@ -65,8 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
65
80
|
- !ruby/object:Gem::Version
|
|
66
81
|
version: '0'
|
|
67
82
|
requirements: []
|
|
68
|
-
|
|
69
|
-
rubygems_version: 2.6.8
|
|
83
|
+
rubygems_version: 3.0.2
|
|
70
84
|
signing_key:
|
|
71
85
|
specification_version: 4
|
|
72
86
|
summary: Testing Framework
|