Skip to content

Instantly share code, notes, and snippets.

@pascalesdedy
Created October 20, 2018 15:17
Show Gist options
  • Save pascalesdedy/53f79818467c6880b0e65f65499f7efa to your computer and use it in GitHub Desktop.
Save pascalesdedy/53f79818467c6880b0e65f65499f7efa to your computer and use it in GitHub Desktop.
spec/model/article_spec.rb - used for Simple CRUD TDD
require 'rails_helper'
RSpec.describe Article, type: :model do
# Validation tests
# ensure columns title and created_by are present before saving
it { should validate_presence_of(:title) }
it { should validate_presence_of(:content) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment