Sha256: e3d6eabad48d06db160852672c18c611c5993f2d6e4a7c1f72220ccb1538eda1
Contents?: true
Size: 593 Bytes
Versions: 9
Compression:
Stored size: 593 Bytes
Contents
require File.expand_path('../test_helper', File.dirname(__FILE__)) class CmsConfigurationTest < ActiveSupport::TestCase def test_configuration_presense assert config = ComfortableMexicanSofa.configuration assert_equal 'ComfortableMexicanSofa', config.cms_title assert_equal 'ComfortableMexicanSofa::HttpAuth', config.authentication assert_equal nil, config.seed_data_path end def test_initialization_overrides ComfortableMexicanSofa.configuration.cms_title = 'New Title' assert_equal 'New Title', ComfortableMexicanSofa.configuration.cms_title end end
Version data entries
9 entries across 9 versions & 1 rubygems