|
|
|
@ -2,12 +2,6 @@ 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_truthy
|
|
|
|
|
|
|
|
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) }
|
|
|
|
|