Files
danbooru/test/components/file_upload_component_test.rb
2022-01-29 23:23:29 -06:00

11 lines
237 B
Ruby

require "test_helper"
class FileUploadComponentTest < ViewComponent::TestCase
context "The FileUploadComponent" do
should "render" do
render_inline(FileUploadComponent.new)
assert_text("Choose file")
end
end
end