Deliberately introduce failing test to verify automatic deploy

This commit is contained in:
Alex Basson 2021-09-10 11:08:27 -04:00
parent 7a3fe86e6f
commit e60e8324f1
2 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
name: Ruby name: Build and Test
on: on:
push: push:

View file

@ -2,6 +2,12 @@ require 'rails_helper'
RSpec.describe Attempt, type: :model do RSpec.describe Attempt, type: :model do
describe 'a failing test' do
it 'fails' do
expect(true).to be_falsey
end
end
let!(:school) { School.create!(name: 'School') } let!(:school) { School.create!(name: 'School') }
let!(:recipient) { school.recipients.create(name: 'name', phone: "#{1}" * 9) } let!(:recipient) { school.recipients.create(name: 'name', phone: "#{1}" * 9) }