Sha256: 3a4dcd3b231e5ef7831036636debec6a824d8735e73949b68f8c01abdad33e35
Contents?: true
Size: 698 Bytes
Versions: 4
Compression:
Stored size: 698 Bytes
Contents
# coding: utf-8 require 'test/unit/helper' class ThinReports::TestConfig < MiniTest::Unit::TestCase include ThinReports::TestHelpers def test_generator_of_Configuration_should_return_configuration_of_generator config = ThinReports::Configuration.new assert_instance_of ThinReports::Generator::Configuration, config.generator end def test_config_should_return_configuration_of_thinreports assert_instance_of ThinReports::Configuration, ThinReports.config end def test_configure_should_exec_an_given_block_with_config_which_instance_of_Configuration ThinReports.configure do |config| assert_instance_of ThinReports::Configuration, config end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
thinreports-0.7.7 | test/unit/test_config.rb |
thinreports-0.7.6 | test/unit/test_config.rb |
thinreports-0.7.5 | test/unit/test_config.rb |
thinreports-0.7.0 | test/unit/test_config.rb |