mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-07 04:31:00 -05:00
13 lines
161 B
Ruby
13 lines
161 B
Ruby
require 'spec_helper'
|
|
|
|
feature User do
|
|
|
|
shared_examples 'admin ability' do
|
|
|
|
end
|
|
|
|
describe 'admin' do
|
|
it_behaves_like 'admin ability', :admin
|
|
end
|
|
end
|