Files
onemdm-server/spec/models/app_usage_spec.rb
Leena abe0b6c083 Change the app_usages API to accept array of data
- Add foreignkey to device for AppUsage
- Rename the route to app_usage from app_usage/create
2016-02-05 08:24:39 +05:30

11 lines
310 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 }
it { should belong_to :device }
end