mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
27 lines
718 B
Ruby
27 lines
718 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class AvailabilityTest < ActiveSupport::TestCase
|
|
test 'any duration is allowed' do
|
|
a = Availability.first
|
|
a.end_at = a.start_at + 15.minutes
|
|
assert a.valid?
|
|
end
|
|
|
|
test "if type available_type is 'machines' check that there is minimum 1 association" do
|
|
a = Availability.where(available_type: 'machines').first
|
|
a.machines_availabilities.destroy_all
|
|
assert a.invalid?
|
|
assert a.errors.key?(:machine_ids)
|
|
end
|
|
|
|
test 'return empty = true if availability dont have any reservation' do
|
|
not_reserved = Availability.find(1)
|
|
assert not_reserved.empty?
|
|
|
|
reserved = Availability.find(13)
|
|
assert_not reserved.empty?
|
|
end
|
|
end
|