* Remove extraneous string conversion * Add slack message for new notes * Move status and minimize buttons to the bottom * Add note model spec * Remove extraneous param for reported links
8 lines
281 B
Ruby
8 lines
281 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Note, type: :model do
|
|
it { is_expected.to validate_presence_of(:reason) }
|
|
it { is_expected.to validate_presence_of(:content) }
|
|
it { is_expected.to belong_to(:noteable) }
|
|
it { is_expected.to belong_to(:author).class_name("User") }
|
|
end
|