Sha256: fdb00f53c5138be107c97823897f5e39b1338c8615003ad2cbec9d0896e9a8ee
Contents?: true
Size: 542 Bytes
Versions: 1
Compression:
Stored size: 542 Bytes
Contents
require 'test_helper' module I18nDashboard class ConfigurationTest < ActiveSupport::TestCase def setup @blog_configuration = I18nDashboard::Configuration.new end test "should set :authentication_method to nil" do assert_nil @blog_configuration.authentication_method end test "should set :layout to nil" do assert_nil @blog_configuration.layout end test "should set :inline_main_app_named_routes to false" do assert !@blog_configuration.inline_main_app_named_routes end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
i18n_dashboard-0.1.4 | test/i18n_dashboard/configuration_test.rb |