1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-02 22:52:21 +01:00
fab-manager/spec/models/availability_spec.rb

18 lines
366 B
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
require 'rails_helper'
RSpec.describe Availability, type: :model do
describe 'create' do
it 'is success with start at, end at and type'
it 'is invalid without start at'
it 'is invalid without end at'
it 'is invalid without type'
it 'is invalid type isnt in [event]'
end
it 'should get a title'
it 'should set a number of places'
end