1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/test/models/availability_test.rb

19 lines
497 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'test_helper'
class AvailabilityTest < ActiveSupport::TestCase
test 'any duration is allowed' do
2016-04-05 12:28:42 +02:00
a = Availability.first
a.end_at = a.start_at + 15.minutes
assert a.valid?
end
2016-04-05 10:03:58 +02:00
test "if type available_type is 'machines' check that there is minimum 1 association" do
2016-04-05 12:28:42 +02:00
a = Availability.where(available_type: 'machines').first
a.machines_availabilities.destroy_all
2016-04-05 10:03:58 +02:00
assert a.invalid?
assert a.errors.key?(:machine_ids)
end
end