implement players

This commit is contained in:
2024-09-12 19:06:02 -07:00
parent c7df3aacfe
commit 6040c7aaf2
10 changed files with 94 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# frozen_string_literal: true
RSpec.describe EuchreCamp::Actions::Players::Show do
let(:params) { Hash[] }
it "works" do
response = subject.call(params)
expect(response).to be_successful
end
end