Class: Tuev
- Inherits:
-
Object
- Object
- Tuev
- Defined in:
- lib/tuev/tuev.rb
Defined Under Namespace
Classes: TestSuite
Class Attribute Summary collapse
-
.config ⇒ Object
Returns the value of attribute config.
-
.contrib_dir ⇒ Object
Returns the value of attribute contrib_dir.
-
.cwd ⇒ Object
Returns the value of attribute cwd.
-
.gem_path ⇒ Object
Returns the value of attribute gem_path.
-
.read_config ⇒ Object
Returns the value of attribute read_config.
Class Method Summary collapse
Class Attribute Details
.config ⇒ Object
Returns the value of attribute config.
6 7 8 |
# File 'lib/tuev/tuev.rb', line 6 def config @config end |
.contrib_dir ⇒ Object
Returns the value of attribute contrib_dir.
6 7 8 |
# File 'lib/tuev/tuev.rb', line 6 def contrib_dir @contrib_dir end |
.cwd ⇒ Object
Returns the value of attribute cwd.
6 7 8 |
# File 'lib/tuev/tuev.rb', line 6 def cwd @cwd end |
.gem_path ⇒ Object
Returns the value of attribute gem_path.
6 7 8 |
# File 'lib/tuev/tuev.rb', line 6 def gem_path @gem_path end |
.read_config ⇒ Object
Returns the value of attribute read_config.
6 7 8 |
# File 'lib/tuev/tuev.rb', line 6 def read_config @read_config end |
Class Method Details
.selenium_conf ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/tuev/tuev.rb', line 33 def self.selenium_conf @selenium_conf ||= { :host => config["selenium"]["host"], :port => config["selenium"]["port"], :browsers => [*config["selenium"]["browsers"]] } end |
.test_out ⇒ Object
29 30 31 |
# File 'lib/tuev/tuev.rb', line 29 def self.test_out config["tests_out"] || "/tmp" end |