mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
16 lines
187 B
Ruby
16 lines
187 B
Ruby
|
require 'minitest/autorun'
|
||
|
|
||
|
class UserInfoTest < Minitest::Test
|
||
|
def setup
|
||
|
# Do nothing
|
||
|
end
|
||
|
|
||
|
def teardown
|
||
|
# Do nothing
|
||
|
end
|
||
|
|
||
|
def test
|
||
|
skip 'Not implemented'
|
||
|
end
|
||
|
end
|