mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
192 B
Ruby
14 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
feature User do
|
|
|
|
shared_examples 'admin ability' do
|
|
|
|
end
|
|
|
|
describe 'admin' do
|
|
it_behaves_like 'admin ability', :admin
|
|
end
|
|
end
|