heartcombo--simple_form/test/simple_form_test.rb

10 lines
195 B
Ruby

require 'test_helper'
class SimpleFormTest < ActiveSupport::TestCase
test 'setup block yields self' do
SimpleForm.setup do |config|
assert_equal SimpleForm, config
end
end
end