require "spec_helper"

describe package("httpd24"), if: os[:family] == "redhat" do
  it { should be_installed }
end

describe service("httpd"), if: os[:family] == "redhat" do
  it { should be_running }
end

describe port(80) do
  it { should be_listening }
end

describe host("vectorapi.qaorch.com") do
  it { should be_resolvable.by("dns") }
end
