10 lines
193 B
Ruby
10 lines
193 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "test_helper"
|
||
|
|
||
|
class TextFieldTest < ActiveSupport::TestCase
|
||
|
test "name must exist" do
|
||
|
assert_must_exist(text_fields(:background), :name)
|
||
|
end
|
||
|
end
|