1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
fab-manager/spec/models/training_spec.rb
2016-03-23 18:39:41 +01:00

19 lines
380 B
Ruby

require 'rails_helper'
RSpec.describe Training, type: :model do
describe 'create' do
it 'is success with name'
it 'is invalid without name'
it 'should auto generate slug by name'
end
it 'can associate many machines'
it 'can return a user list that valided by traning'
it 'should return an amount by user group'
it 'should can add a number place'
end