mirror of
https://github.com/Eising/kipketer.git
synced 2024-05-11 05:55:17 +00:00
12 lines
216 B
Ruby
12 lines
216 B
Ruby
class Hastighedstest < Sinatra::Base
|
|
|
|
# Load the test configuration YAML file
|
|
#
|
|
# @return A Hash from YAML
|
|
def test_config
|
|
config = YAML.load_file("etc/tests.yml")
|
|
config
|
|
end
|
|
|
|
end
|