test/test_config_base.rb in confuse-0.1.4 vs test/test_config_base.rb in confuse-0.1.5

- old
+ new

@@ -2,10 +2,12 @@ require 'confuse' class Foo < Confuse::ConfigBase define :foo do default 'foo' + type :string + description 'foo' end end class TestConfigBase < MiniTest::Unit::TestCase def test_two_instances_can_exist_with_different_values @@ -17,8 +19,16 @@ config1[:foo] = 'bar' # assert only one has changed assert_equal 'bar', config1[:foo] assert_equal 'foo', config2[:foo] + end + + # This is easier to test with an instance of a config object, rather than as + # part of the test for the module where other tests can modify the model. + def test_params_hash + assert_equal({ :default_foo => { :type => :string, :doc => 'foo', + :default => 'foo' } }, + Foo.new.params_hash) end end