skill-assessment-app/test/services/skill_config_test.rb

18 lines
435 B
Ruby
Raw Normal View History

require 'test_helper'
class SkillConfigTest < ActiveSupport::TestCase
test "verify sample file exists" do
assert File.exist? "#{Rails.root}/config/application.yml.sample"
end
test "verify config file exists" do
assert File.exist? "#{Rails.root}/config/application.yml"
end
test 'config can load and return proper values' do
skonfig = SkillConfig.new
assert_equal 'localhost', skonfig.mysql_host
end
end