diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-06 16:47:19 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-06 16:52:36 -0600 |
commit | e4d2dfda526402b1cd4623ea473ab655ea421de5 (patch) | |
tree | bf4e293dda2025366061f662a7890c3fbfa2df54 /tests/spec/simulator_spec.rb | |
parent | d3f9715777ee32b7c3d38f8b520597eea2d79a79 (diff) | |
download | horizon-e4d2dfda526402b1cd4623ea473ab655ea421de5.tar.gz horizon-e4d2dfda526402b1cd4623ea473ab655ea421de5.tar.bz2 horizon-e4d2dfda526402b1cd4623ea473ab655ea421de5.tar.xz horizon-e4d2dfda526402b1cd4623ea473ab655ea421de5.zip |
tests: Add more nameserver behavioural tests
Diffstat (limited to 'tests/spec/simulator_spec.rb')
-rw-r--r-- | tests/spec/simulator_spec.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/spec/simulator_spec.rb b/tests/spec/simulator_spec.rb index be684a1..e5eeb52 100644 --- a/tests/spec/simulator_spec.rb +++ b/tests/spec/simulator_spec.rb @@ -179,6 +179,7 @@ printf '%s\\t%s\\t%s\\t%s\\t0\\t0\\n' /dev/gwyn/source /usr/src auto noatime >> run_simulate expect(last_command_started.stdout).to_not include ("/target/etc/init.d/net") end + # Runner.Execute.netaddress.OpenRC it "performs OpenRC configuration when netifrc is installed" do use_fixture '0200-netaddress-openrc.installfile' run_simulate @@ -228,6 +229,7 @@ printf '%s\\t%s\\t%s\\t%s\\t0\\t0\\n' /dev/gwyn/source /usr/src auto noatime >> end end context "simulating 'language' execution" do + # Runner.Execute.language it "doesn't configure language by default" do use_fixture '0001-basic.installfile' run_simulate @@ -246,6 +248,7 @@ printf '%s\\t%s\\t%s\\t%s\\t0\\t0\\n' /dev/gwyn/source /usr/src auto noatime >> end end context "simulating 'keymap' execution" do + # Runner.Execute.keymap it "configures the system keymap correctly" do use_fixture '0178-keymap-basic.installfile' run_simulate @@ -253,11 +256,13 @@ printf '%s\\t%s\\t%s\\t%s\\t0\\t0\\n' /dev/gwyn/source /usr/src auto noatime >> end end context "simulating 'timezone' execution" do + # Runner.Execute.timezone.Missing it "configures UTC by default" do use_fixture '0001-basic.installfile' run_simulate expect(last_command_started.stdout).to include("ln -s /usr/share/zoneinfo/UTC /target/etc/localtime") end + # Runner.Execute.timezone it "configures the system timezone correctly" do use_fixture '0134-timezone-subtz.installfile' run_simulate |