mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
12 lines
249 B
Ruby
12 lines
249 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe App, type: :model do
|
|
pending "add some examples to (or delete) #{__FILE__}"
|
|
|
|
let!(:app) { create(:app) }
|
|
|
|
it { should validate_presence_of :name }
|
|
it { should validate_presence_of :package_name }
|
|
|
|
end
|