vereto-api/spec/models/item_spec.rb
2018-02-16 11:36:18 +00:00

10 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