expertiza/expertiza

View on GitHub
spec/models/review_comment_paste_bin_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
describe ReviewCommentPasteBin do
  it { should belong_to(:review_grade) }
  describe 'instance variables' do
    it 'it can be set' do
      rcpb = ReviewCommentPasteBin.new
      rcpb.title = 'title'
      rcpb.review_comment = 'comment'
    end
  end
end