This commit is contained in:
2024-11-17 15:25:49 -05:00
parent 4934c26c9a
commit eab3494b40
16 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
require "test_helper"
class InvitationsControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end

11
test/fixtures/invitations.yml vendored Normal file
View File

@@ -0,0 +1,11 @@
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
name: MyString
attending: MyString
additional_guest: MyString
two:
name: MyString
attending: MyString
additional_guest: MyString

View File

@@ -0,0 +1,7 @@
require "test_helper"
class InvitationTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end