uploads: fix more tests.

This commit is contained in:
evazion
2022-01-29 22:53:04 -06:00
parent 810c3da939
commit 892c3899a8
6 changed files with 89 additions and 111 deletions

View File

@@ -0,0 +1,10 @@
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