1
0
Fork 0
mirror of https://github.com/nishiki/is_master.git synced 2024-10-27 01:53:16 +00:00
is_master/test/test_cli.rb

14 lines
296 B
Ruby
Raw Normal View History

2017-11-09 10:35:27 +00:00
require 'test/unit'
class TestCli < Test::Unit::TestCase
def test_slave_mode
output = %x(is_master 10.255.255.0 echo 'GOOD!')
assert_match('I am slave', output)
end
def test_master_mode
output = %x(is_master 127.0.0.1 echo 'GOOD!')
assert_match('GOOD!', output)
end
end