Sha256: bd365830d46c8b3d6268c642836d7394b069a914784f6f068c0a5a23a97c1240
Contents?: true
Size: 404 Bytes
Versions: 10
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true require 'test_helper' class SimpleFormTest < ActiveSupport::TestCase test 'setup block yields self' do SimpleForm.setup do |config| assert_equal SimpleForm, config end end test 'setup block configure Simple Form' do SimpleForm.setup do |config| assert_equal SimpleForm, config end assert_equal true, SimpleForm.configured? end end
Version data entries
10 entries across 10 versions & 1 rubygems