Add copyright notice
All checks were successful
Add copyright notice / copyright_notice (pull_request) Successful in 1m1s
Run unit tests / unit_tests (pull_request) Successful in 2m8s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 40m9s

This commit is contained in:
Manuel Bustillo 2024-10-28 22:07:35 +00:00
parent ace03a6654
commit 658c2331ca
12 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
module Tree

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
FactoryBot.define do
factory :group do
sequence(:name) { |i| "Group #{i}" }

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
FactoryBot.define do
factory :guest do
association :group

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
RSpec.describe Expense, type: :model do

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
RSpec.describe Group, type: :model do

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
RSpec.describe Guest, type: :model do

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
RSpec.describe Seat, type: :model do

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
RSpec.describe TablesArrangement, type: :model do

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
# This file is copied to spec/ when you run 'rails generate rspec:install'
require 'spec_helper'
ENV['RAILS_ENV'] ||= 'test'

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
module Tables
RSpec.describe DiscomfortCalculator do

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
require 'rails_helper'
module Tables

View File

@ -1,3 +1,5 @@
# Copyright (C) 2024 Manuel Bustillo
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# The generated `.rspec` file contains `--require spec_helper` which will cause