mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
10 lines
276 B
Ruby
10 lines
276 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe AppUsage, type: :model do
|
|
let!(:app_usage) { create(:app_usage) }
|
|
|
|
it { should validate_presence_of :package_name }
|
|
it { should validate_presence_of :usage_duration_in_seconds }
|
|
it { should validate_presence_of :used_on }
|
|
end
|