11 lines
289 B
Ruby
11 lines
289 B
Ruby
|
|
require 'rails_helper'
|
||
|
|
|
||
|
|
RSpec.describe Item, type: :model do
|
||
|
|
# Association test
|
||
|
|
# ensure an item record belongs to a single todo record
|
||
|
|
it { should belong_to(:todo) }
|
||
|
|
# Validation test
|
||
|
|
# ensure column name is present before saving
|
||
|
|
it { should validate_presence_of(:name) }
|
||
|
|
end
|