Files
puzzle-scoreboard/spec/models/offline_spec.rb
sto 37a65526e4
Some checks failed
CI / scan_ruby (push) Successful in 17s
CI / scan_js (push) Successful in 14s
CI / lint (push) Failing after 15s
CI / test (push) Successful in 42s
Implement offline POST method for starting an offline participation
2025-10-30 11:37:20 +01:00

26 lines
583 B
Ruby

# == Schema Information
#
# Table name: offlines
#
# id :integer not null, primary key
# end_time :datetime
# name :string not null
# start_time :datetime not null
# created_at :datetime not null
# updated_at :datetime not null
# contest_id :integer not null
#
# Indexes
#
# index_offlines_on_contest_id (contest_id)
#
# Foreign Keys
#
# contest_id (contest_id => contests.id)
#
require 'rails_helper'
RSpec.describe Offline, type: :model do
pending "add some examples to (or delete) #{__FILE__}"
end