taft 0.2.2 → 0.2.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12c591e3361e921a5743e3666ed8aedf217bdcf414846e8d4e4e7da84629ca57
|
4
|
+
data.tar.gz: 1af10051a7ce78a8d9137418dcb4ad0bb253b132ab2938e6ebe05b194e261c80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17cd7dabd559a21150d88dec9f810829f8d47f2c4a8af2fd6ae933a12792a84ec6745db0e0a511a2342d66d005b8e24feb6a40013f7c254e30dfe17d04341151
|
7
|
+
data.tar.gz: 23039089ec65fb1f010febd796e1789356935199ce53c88c77032d7b1a0fffe31b851a51928c40f875110dd45c2fb1251bbd99107be9f8dbf26b73de065f14aa
|
@@ -28,7 +28,7 @@ class XXabbrevupperxxHelper
|
|
28
28
|
|
29
29
|
# Reads in a file of CSV test data, e.g for use in data-driven tests
|
30
30
|
def read_csv_test_data(filename)
|
31
|
-
path = File.join(File.dirname(File.expand_path(__FILE__)) + "
|
31
|
+
path = File.join(File.dirname(File.expand_path(__FILE__)) + "/../../../tests/data", filename)
|
32
32
|
read_csv_data_from_file(path)
|
33
33
|
end
|
34
34
|
|
@@ -43,7 +43,7 @@ class XXabbrevupperxxHelper
|
|
43
43
|
|
44
44
|
# Reads in a JSON schema
|
45
45
|
def read_json_schema(schema_filename)
|
46
|
-
path = File.join(File.dirname(File.expand_path(__FILE__)) + "
|
46
|
+
path = File.join(File.dirname(File.expand_path(__FILE__)) + "/../../../tests/data", schema_filename)
|
47
47
|
data = []
|
48
48
|
File.open(path, "r") do |f|
|
49
49
|
data = f.readlines
|
data/taft.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'taft'
|
3
|
-
s.version = '0.2.
|
3
|
+
s.version = '0.2.3'
|
4
4
|
s.licenses = ['MIT']
|
5
5
|
s.summary = "Test Automation Framework Template (TAFT)"
|
6
6
|
s.description = "TAFT will deploy/install a skeleton code framework for the automated testing of applications with APIs and/or web-UIs"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: taft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Morrisby
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: TAFT will deploy/install a skeleton code framework for the automated
|
14
14
|
testing of applications with APIs and/or web-UIs
|