Setup Rspec
All checks were successful
CI / scan_ruby (push) Successful in 19s
CI / scan_js (push) Successful in 12s
CI / lint (push) Successful in 13s
CI / test (push) Successful in 34s

This commit is contained in:
sto
2025-03-26 19:58:11 +01:00
parent 2144c22bd9
commit 12f9f33034
7 changed files with 201 additions and 10 deletions

9
spec/models/user_spec.rb Normal file
View File

@@ -0,0 +1,9 @@
require 'rails_helper'
RSpec.describe User, type: :model do
context "1" do
it "equals 1" do
expect(1).to eq(1)
end
end
end