ole-qa-framework 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +5 -0
- data/lib/common/line_object.rb +2 -2
- data/lib/config/default_options.yml +3 -3
- data/lib/ole_qa_framework/VERSION.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/lib/common/line_object.rb
CHANGED
@@ -60,10 +60,10 @@ module OLE_QA::Framework
|
|
60
60
|
raise StandardError, "Name must be a symbol. Given: #{name} (#{name.class})" unless name.instance_of?(Symbol)
|
61
61
|
raise StandardError, "Klas must be a class. Given: #{klas} (#{klas.class})" unless klas.instance_of?(Class)
|
62
62
|
raise StandardError, "Subline object is already defined. (Use the 'force = true' option to suppress this error.)" if @sublines.include?(name) && ! force
|
63
|
-
instance_variable_set("@#{name}", klas.new(@ole, 1))
|
63
|
+
instance_variable_set("@#{name}", klas.new(@ole, self, 1))
|
64
64
|
make_reader(name) unless force
|
65
65
|
@sublines << name unless force
|
66
66
|
end
|
67
67
|
alias_method(:subline, :set_subline)
|
68
68
|
end
|
69
|
-
end
|
69
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# Default options for
|
1
|
+
# Default options for using development environment.
|
2
2
|
---
|
3
|
-
:url: http://
|
3
|
+
:url: http://dev.ole.kuali.org/
|
4
4
|
:headless?: true
|
5
5
|
:implicit_wait: 0
|
6
6
|
:explicit_wait: 15
|
7
|
-
:doc_wait:
|
7
|
+
:doc_wait: 60
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ole-qa-framework
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|