taft 0.2.1 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38314855ea92f1fd195b9849921abf7922753db27bd1cf2aecf1cbf9f101c101
4
- data.tar.gz: '098dc0f58abc5c11d336ddc2490bd0a6b06b78b0d01584bda7e49140a7b5ca7d'
3
+ metadata.gz: 9fbcf6997d43de59170f1066d96c68df80cd89af86a273c7328df6343343cfe2
4
+ data.tar.gz: 3943d3bd69ebdfde65627db753a141a98f692f7fdb1d1a83146874cc96874ccf
5
5
  SHA512:
6
- metadata.gz: f06a951dc5c2bbfc798ddf1d30b44f74e29ef150861bfb7c5f1f471184be3b005cd9b061e2791bfd378250252f628f42ebe1f51e91db899ac1449990a38fb2b2
7
- data.tar.gz: d04710d797da6337f55d3cd1da02f8d5ce084a54b23d8d3f4c6870006b16309e6fb76ae0e281656a2055d52658c5e8c70c31493f8d07d3c2e3fdcf10ee432f3d
6
+ metadata.gz: a27e90e8a49cdd47445ad8460a3eecce91ecc0a5f19dbcef4e7f7ea544f53e017788d77a6d7f4a7fab2ab52eaa4def9d14cc5c8aaefa4528a5b1178879cc83f1
7
+ data.tar.gz: fab32645157aa12f6c2c71ca09596c4bf42567ca67a694c7f9a7736e8f28a0118a1a7001b3f7f59d1dec1d65bbc3bb9467d917f85f596730dd54c20a4ec11ff4
@@ -0,0 +1,11 @@
1
+ # Automated tests for yyrawnameyy
2
+
3
+
4
+
5
+ ## How to install
6
+
7
+
8
+
9
+ ## How to run
10
+
11
+
@@ -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__)) + "/../../../../tests/data", filename)
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__)) + "/../../../../tests/data", schema_filename)
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
@@ -54,7 +54,7 @@ module ZZnamezzTestCase
54
54
  when /^browser$/
55
55
  browser
56
56
  when /^xxabbrevxx/i
57
- RSPages.find(name.to_s) # return the page so that the test can use it
57
+ XXabbrevupperxxPages.find(name.to_s) # return the page so that the test can use it
58
58
  else
59
59
  super
60
60
  end
@@ -1,4 +1,4 @@
1
- $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../../lib")
1
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../../lib"))
2
2
 
3
3
  require "zznamezz_test_case"
4
4
 
data/taft.gemspec CHANGED
@@ -1,13 +1,13 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'taft'
3
- s.version = '0.2.1'
3
+ s.version = '0.2.6'
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"
7
7
  s.authors = ["Richard Morrisby"]
8
8
  s.email = 'rmorrisby@gmail.com'
9
9
  s.files = ["lib/taft.rb"]
10
- s.homepage = 'https://rubygems.org/gems/taft'
10
+ s.homepage = 'https://github.com/RMorrisby/taft'
11
11
  s.required_ruby_version = '>=2.6'
12
12
  s.files = Dir['**/**']
13
13
  s.test_files = Dir["test/test*.rb"]
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.1
4
+ version: 0.2.6
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-30 00:00:00.000000000 Z
11
+ date: 2021-02-19 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
@@ -34,6 +34,7 @@ files:
34
34
  - examples/ruby/rs/tests/v1/tc_r001_01_an_example_test.rb
35
35
  - examples/ruby/rs/tests/v1/tc_r001_01_google_search.rb
36
36
  - lib/taft.rb
37
+ - lib/taft_files/README.md
37
38
  - lib/taft_files/framework/zznamezz.rb
38
39
  - lib/taft_files/framework/zznamezz/api_helpers/general.rb
39
40
  - lib/taft_files/framework/zznamezz/api_helpers/rest.rb
@@ -48,7 +49,7 @@ files:
48
49
  - lib/taft_files/tests/v1/tc_r001_01_an_example_test.rb
49
50
  - taft.gemspec
50
51
  - test/test_example.rb
51
- homepage: https://rubygems.org/gems/taft
52
+ homepage: https://github.com/RMorrisby/taft
52
53
  licenses:
53
54
  - MIT
54
55
  metadata: {}