mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
9 lines
195 B
Ruby
9 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
|