require_relative "../spec_helper" # require the special spec_helper in localhost/

def test_landing
  "curl -I http://qa-ows-xlsx.elasticbeanstalk.com/"
end

describe command(test_landing) do
  its(:stdout) { should contain("HTTP/1.1 200 OK") }
end
