Class: Viiite::Suite
Instance Attribute Summary (collapse)
-
- (Object) benchmarks
readonly
Returns the value of attribute benchmarks.
-
- (Object) config
readonly
Returns the value of attribute config.
Instance Method Summary (collapse)
- - (Object) files
-
- (Suite) initialize(config, benchmarks)
constructor
A new instance of Suite.
Methods included from Unit
Constructor Details
- (Suite) initialize(config, benchmarks)
A new instance of Suite
8 9 10 11 |
# File 'lib/viiite/suite.rb', line 8 def initialize(config, benchmarks) @config = config @benchmarks = benchmarks end |
Instance Attribute Details
- (Object) benchmarks (readonly)
Returns the value of attribute benchmarks
6 7 8 |
# File 'lib/viiite/suite.rb', line 6 def benchmarks @benchmarks end |
- (Object) config (readonly)
Returns the value of attribute config
5 6 7 |
# File 'lib/viiite/suite.rb', line 5 def config @config end |
Instance Method Details
- (Object) files
13 14 15 |
# File 'lib/viiite/suite.rb', line 13 def files benchmarks.map(&:path) end |