diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2017-09-22 21:28:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 21:28:13 +0900 |
commit | 17fa6b1b227b3c46df8a344b88dfc559f2ad258a (patch) | |
tree | e8504025cc12dbc9dcf47eec7d5ac73824f7d0ad /spec/ospf/vyos4_spec.rb | |
parent | 4110d2e31dc5403f4061d65161793b6accabb2b8 (diff) | |
parent | 1a32090164ba83424d0f8163b50328ef52ec4350 (diff) | |
download | vyos-integration-test-17fa6b1b227b3c46df8a344b88dfc559f2ad258a.tar.gz vyos-integration-test-17fa6b1b227b3c46df8a344b88dfc559f2ad258a.zip |
Merge pull request #2 from micho7/feature/add-ospf
added ospf ipv4 test
Diffstat (limited to 'spec/ospf/vyos4_spec.rb')
-rw-r--r-- | spec/ospf/vyos4_spec.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/ospf/vyos4_spec.rb b/spec/ospf/vyos4_spec.rb new file mode 100644 index 0000000..692a456 --- /dev/null +++ b/spec/ospf/vyos4_spec.rb @@ -0,0 +1,13 @@ +require_relative '../spec_helper' +require_relative '../config_spec' + +describe 'vyos4_config' do + include_examples 'config_spec' +end + +# Wait for advertising +sleep(40) + +describe host('10.0.2.13') do + it { should be_reachable.with(timeout: 10) } +end |