tab/spec/models/client_spec.rb
Ilion Beyst a3a7ff8c44 Revert "Merge branch 'master' into filter-datatables"
This reverts commit 78863c40b7, reversing
changes made to bbaa070cca.
2015-09-10 22:25:52 +02:00

23 lines
507 B
Ruby

# == Schema Information
#
# Table name: clients
#
# id :integer not null, primary key
# name :string not null
# key :string not null
# created_at :datetime not null
# updated_at :datetime not null
#
require 'rails_helper'
RSpec.describe Client, type: :model do
it "should have a valid factory" do
expect(create(:client)).to be_valid
end
it "should generate a key" do
expect(create(:client).key).to be_present
end
end