brpm_module_selenium 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.travis.yml +1 -1
- data/Rakefile +0 -1
- data/config.yml +4 -3
- data/{brpm_module_selenium.gemspec → module.gemspec} +4 -7
- data/tests/execute_test_run_spec.rb +1 -1
- data/tests/gemspec_spec.rb +11 -0
- data/tests/spec_helper.rb +1 -1
- metadata +12 -11
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZmI1OThhYmFiZTg2NDZlMGJkOGQxYjk1YTNiMzA0ZDE5Y2RkZTRkZg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjNkNWI0NzgyZGNlMjNhNTYzNmVkY2JjNTBiNzJjMWZiZjU0MzNhYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZWUzMGI5ZjMwMDVkMmZhOTg1ZDlmZjA0YmFhYjNmYmVmZWI3YTc4ZTU0MDAw
|
10
|
+
MDJjYjQ2NGEyZjc4ZWZhYjE5OWZkNTIyODdhNzg3YmRhNzAyN2YwMWQ5NWEw
|
11
|
+
MmJmOTRlNTU1OTIxYjg2YmQ0Yjc0YmExMWQ1NDBiODhkMGU5OGY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ODdjMTQ0ZDUwZTFkYTMxMzliNDdiOTNmMWM5MjI0NzJlZTkxMzE5YmJkZGUz
|
14
|
+
NTI1NjIxZTZmYjYzZTRmZjY3MmNkODZkM2M3YjczYTk5NzdjYTJhMzUzOTNm
|
15
|
+
ZjEzZTYzOWFiZTQyN2UyOTA0ZWE3NzljZjIzM2I2ZjVhNjJkM2M=
|
data/.travis.yml
CHANGED
@@ -6,7 +6,7 @@ before_install:
|
|
6
6
|
bundler_args: '' #remove the --deployment flag that causes the gems to be installed in .../1.9.1/...
|
7
7
|
|
8
8
|
script:
|
9
|
-
- rspec tests --format documentation --color
|
9
|
+
- bundle exec rspec tests --format documentation --color
|
10
10
|
|
11
11
|
notifications:
|
12
12
|
email:
|
data/Rakefile
CHANGED
data/config.yml
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
dependencies:
|
2
|
-
- brpm_module_brpm: { version: "0.1.
|
2
|
+
- brpm_module_brpm: { version: "0.1.32" }
|
3
3
|
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.12
|
5
5
|
|
6
6
|
author: Niek Bartholomeus
|
7
7
|
email: niek.bartholomeus@gmail.com
|
8
8
|
homepage: https://github.com/BMC-RLM/brpm_module_selenium
|
9
|
+
license: MIT
|
9
10
|
summary: Selenium automation scripts and libraries to run on top of the BRPM Content framework
|
10
|
-
description: Selenium automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/
|
11
|
+
description: Selenium automation scripts and libraries to run on top of the BRPM Content framework. See https://github.com/BMC-RLM/brpm_content_framework for more information about the BRPM Content framework
|
@@ -3,17 +3,17 @@ require "yaml"
|
|
3
3
|
config = YAML.load_file(File.join(File.dirname(__FILE__), "config.yml"))
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name = File.basename(File.expand_path(File.dirname(__FILE__)))
|
6
|
+
spec.name = File.basename(File.expand_path(File.dirname(__FILE__))).sub("-#{config["version"]}", "")
|
7
7
|
spec.version = config["version"]
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
|
-
spec.license = "
|
9
|
+
spec.license = config["license"]
|
10
10
|
spec.authors = [config["author"]]
|
11
11
|
spec.email = config["email"]
|
12
12
|
spec.homepage = config["homepage"]
|
13
13
|
spec.summary = config["summary"]
|
14
14
|
spec.description = config["description"]
|
15
15
|
|
16
|
-
spec.add_runtime_dependency "
|
16
|
+
spec.add_runtime_dependency "brpm_content_framework", ">=0.2.8"
|
17
17
|
|
18
18
|
if config["dependencies"]
|
19
19
|
config["dependencies"].each do |dependency|
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
modul = dependency
|
25
25
|
options = {}
|
26
26
|
end
|
27
|
-
spec.add_runtime_dependency modul, options["version"]
|
27
|
+
spec.add_runtime_dependency modul, options["version"]
|
28
28
|
end
|
29
29
|
end
|
30
30
|
|
@@ -32,8 +32,5 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.add_development_dependency "rspec"
|
33
33
|
|
34
34
|
spec.files = `git ls-files`.split("\n")
|
35
|
-
spec.require_path = 'lib'
|
36
|
-
|
37
35
|
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
38
|
-
spec.bindir = "bin"
|
39
36
|
end
|
@@ -11,7 +11,7 @@ describe 'execute test run' do
|
|
11
11
|
|
12
12
|
params["application"] = 'E-Finance'
|
13
13
|
params["application"] = 'EF - java calculation engine'
|
14
|
-
BrpmScriptExecutor.
|
14
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_selenium", "execute_test_run", params)
|
15
15
|
|
16
16
|
#verify the tests: check if the tests were executed succesfully
|
17
17
|
#test_run = @selenium_cli_client.get_test_run(...)
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require_relative "spec_helper"
|
2
|
+
|
3
|
+
describe 'Gemspec' do
|
4
|
+
it 'should have the right license' do
|
5
|
+
config = YAML.load_file(File.expand_path("#{File.dirname(__FILE__)}/../config.yml"))
|
6
|
+
|
7
|
+
expect(config).to have_key("license")
|
8
|
+
expect(config["license"].downcase).not_to include("gpl")
|
9
|
+
expect(config["license"].downcase).not_to include("gnu")
|
10
|
+
end
|
11
|
+
end
|
data/tests/spec_helper.rb
CHANGED
@@ -7,7 +7,7 @@ def setup_brpm_auto
|
|
7
7
|
|
8
8
|
BrpmAuto.setup( get_default_params.merge!(get_integration_params_for_selenium) )
|
9
9
|
|
10
|
-
BrpmAuto.
|
10
|
+
BrpmAuto.require_module "brpm_module_selenium"
|
11
11
|
|
12
12
|
@selenium_cli_client = SeleniumCliClient.new
|
13
13
|
end
|
metadata
CHANGED
@@ -1,43 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brpm_module_selenium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Niek Bartholomeus
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: brpm_content_framework
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ! '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.2.8
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.2.8
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: brpm_module_brpm
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.1.
|
33
|
+
version: 0.1.32
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.1.
|
40
|
+
version: 0.1.32
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,8 +67,8 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
description: Selenium automation scripts and libraries to run on top of the BRPM Content
|
70
|
-
framework. See https://github.com/BMC-RLM/
|
71
|
-
the BRPM Content framework
|
70
|
+
framework. See https://github.com/BMC-RLM/brpm_content_framework for more information
|
71
|
+
about the BRPM Content framework
|
72
72
|
email: niek.bartholomeus@gmail.com
|
73
73
|
executables: []
|
74
74
|
extensions: []
|
@@ -83,14 +83,15 @@ files:
|
|
83
83
|
- Rakefile
|
84
84
|
- automations/execute_test_run.meta
|
85
85
|
- automations/execute_test_run.rb
|
86
|
-
- brpm_module_selenium.gemspec
|
87
86
|
- config.yml
|
88
87
|
- lib/selenium_cli_client.rb
|
88
|
+
- module.gemspec
|
89
89
|
- tests/execute_test_run_spec.rb
|
90
|
+
- tests/gemspec_spec.rb
|
90
91
|
- tests/spec_helper.rb
|
91
92
|
homepage: https://github.com/BMC-RLM/brpm_module_selenium
|
92
93
|
licenses:
|
93
|
-
-
|
94
|
+
- MIT
|
94
95
|
metadata: {}
|
95
96
|
post_install_message:
|
96
97
|
rdoc_options: []
|