Ifd_Automation 0.1.0 → 0.1.1
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/bin/Ifd_Automation +3 -0
- data/bin/helper.rb +1 -1
- data/features/TestData/DownloadFolder/test.txt +0 -0
- data/features/TestData/ExpectedDataFile/test.txt +0 -0
- data/features/TestData/SqlScript/test.sql +0 -0
- data/features/TestData/actual_images/infodation.jpg +0 -0
- data/features/TestData/expected_images/infodation.jpg +0 -0
- data/features/TestData/image_difference/infodation.jpg +0 -0
- data/features/TestData/screenshots/infodation.jpg +0 -0
- data/lib/Ifd_Automation/version.rb +1 -1
- metadata +29 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ea3da3bd39e3a3ddf26560b237db04792ab9ce9
|
|
4
|
+
data.tar.gz: 87296fd6fce805dff34591f142b10cba09360d5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: febcf868430a06e404b595d8924af8585502b019e914552eb1e9771eebcbb0259e28ce18d52cacd9223108b5ad668657a6d2250622cf1fffe139c321050c2185
|
|
7
|
+
data.tar.gz: fbfbd66974a47f28ba3403739c65bec6dfa4f98f1c4a992ea1a70189320ae0d349deb255997795ad6618412c4e8ee757a8bf81f7a567f55965525541425793dc
|
data/bin/Ifd_Automation
CHANGED
|
@@ -10,6 +10,9 @@ require 'Ifd_Automation/version'
|
|
|
10
10
|
@support_dir = File.join(@features_dir, "actual_images")
|
|
11
11
|
@support_dir = File.join(@features_dir, "image_difference")
|
|
12
12
|
@support_dir = File.join(@features_dir, "screenshots")
|
|
13
|
+
@support_dir = File.join(@features_dir, "DownloadFolder")
|
|
14
|
+
@support_dir = File.join(@features_dir, "ExpectedDataFile")
|
|
15
|
+
@support_dir = File.join(@features_dir, "SqlScript")
|
|
13
16
|
@source_dir = File.join(File.dirname(__FILE__), '..', 'features')
|
|
14
17
|
|
|
15
18
|
if (ARGV.length == 0)
|
data/bin/helper.rb
CHANGED
|
@@ -39,7 +39,7 @@ def print_help
|
|
|
39
39
|
Commands:
|
|
40
40
|
help : prints more detailed help information.
|
|
41
41
|
|
|
42
|
-
gen : creates a
|
|
42
|
+
gen : creates a features dir. This is usually used once when
|
|
43
43
|
setting up ifd-automation to ensure that the features folder contains
|
|
44
44
|
the right step definitions and environment to run with cucumber.
|
|
45
45
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: Ifd_Automation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anh Pham
|
|
@@ -370,6 +370,26 @@ dependencies:
|
|
|
370
370
|
- - '>='
|
|
371
371
|
- !ruby/object:Gem::Version
|
|
372
372
|
version: 0.17.0
|
|
373
|
+
- !ruby/object:Gem::Dependency
|
|
374
|
+
name: rack-utf8_sanitizer
|
|
375
|
+
requirement: !ruby/object:Gem::Requirement
|
|
376
|
+
requirements:
|
|
377
|
+
- - ~>
|
|
378
|
+
- !ruby/object:Gem::Version
|
|
379
|
+
version: 1.3.1
|
|
380
|
+
- - '>='
|
|
381
|
+
- !ruby/object:Gem::Version
|
|
382
|
+
version: 1.3.1
|
|
383
|
+
type: :runtime
|
|
384
|
+
prerelease: false
|
|
385
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
386
|
+
requirements:
|
|
387
|
+
- - ~>
|
|
388
|
+
- !ruby/object:Gem::Version
|
|
389
|
+
version: 1.3.1
|
|
390
|
+
- - '>='
|
|
391
|
+
- !ruby/object:Gem::Version
|
|
392
|
+
version: 1.3.1
|
|
373
393
|
description: Behavior driven development (BDD) approach to write automation test script
|
|
374
394
|
to test Website.
|
|
375
395
|
email: anhpq.info@gmail.com
|
|
@@ -410,13 +430,20 @@ files:
|
|
|
410
430
|
- features/support/env.rb
|
|
411
431
|
- features/support/hooks.rb
|
|
412
432
|
- features/support/project_env.rb
|
|
433
|
+
- features/TestData/actual_images/infodation.jpg
|
|
434
|
+
- features/TestData/DownloadFolder/test.txt
|
|
435
|
+
- features/TestData/ExpectedDataFile/test.txt
|
|
436
|
+
- features/TestData/expected_images/infodation.jpg
|
|
437
|
+
- features/TestData/image_difference/infodation.jpg
|
|
438
|
+
- features/TestData/screenshots/infodation.jpg
|
|
439
|
+
- features/TestData/SqlScript/test.sql
|
|
413
440
|
- features/TestData/testdata.yml
|
|
414
441
|
- features/TestSuite/Login/login.feature
|
|
415
442
|
homepage: https://rubygems.org/gems/ifd_automation
|
|
416
443
|
licenses:
|
|
417
444
|
- MIT
|
|
418
445
|
metadata: {}
|
|
419
|
-
post_install_message: Thank you for installing
|
|
446
|
+
post_install_message: Thank you for installing Infodation Automation gem.
|
|
420
447
|
rdoc_options: []
|
|
421
448
|
require_paths:
|
|
422
449
|
- lib
|