Chatwoot/spec/models/concerns/access_tokenable_shared.rb

10 lines
217 B
Ruby
Raw Permalink Normal View History

2021-01-14 15:05:22 +00:00
require 'rails_helper'
shared_examples_for 'access_tokenable' do
let(:obj) { create(described_class.to_s.underscore) }
it 'creates access token on create' do
expect(obj.access_token).not_to be_nil
2021-01-14 15:05:22 +00:00
end
end