skill-assessment-app/test/services/skill_config_test.rb
2016-08-16 17:09:40 -05:00

18 lines
435 B
Ruby

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