fuel-library/deployment/puppet/osnailyfacter/modular/ceph/radosgw_post.rb
Dmitry Ilyin 4296519bf6 Refactor pre/post modular tests
* Use common library for tests

Related blueprint: fuel-library-modularization
Fuel-CI: disable

Change-Id: I8769748ae79d5a1597eb0f320e0a0ed9581d5a0b
2015-03-24 22:40:32 +03:00

12 lines
396 B
Ruby

require File.join File.dirname(__FILE__), '../test_common.rb'
class RadosgwPostTest < Test::Unit::TestCase
def test_radosgw_process_running
assert TestCommon::Process.running?('radosgw'), 'Radosgw process is not running!'
end
def test_radosgw_backend_online
assert TestCommon::Network.connection?('localhost', 6780), 'Can not connect to radoswg port 6780 on this host!'
end
end