diff options
| author | Robin Houston <robin.houston@gmail.com> | 2012-01-17 21:43:40 +0000 | 
|---|---|---|
| committer | Robin Houston <robin.houston@gmail.com> | 2012-01-17 21:43:40 +0000 | 
| commit | e190eebf7c4bd6a742706e60f2bf941f70d1a1e4 (patch) | |
| tree | 0735d4a36215df79a4c8ec854df3793b5f9cb310 /spec/spec_helper.rb | |
| parent | 3affd6ab3d29bf2e86c9d4b00733499d060af20c (diff) | |
| parent | 41d544631dcb6748ea792f1d8019b5e301056d18 (diff) | |
Merge branch 'wdtk' into release/0.5
Diffstat (limited to 'spec/spec_helper.rb')
| -rw-r--r-- | spec/spec_helper.rb | 14 | 
1 files changed, 11 insertions, 3 deletions
| diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6c3a947ba..e58c3890a 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -121,16 +121,24 @@ def validate_as_body(html)  end  def basic_auth_login(request, username = nil, password = nil) -   username = MySociety::Config.get('ADMIN_USERNAME') if username.nil? +    username = MySociety::Config.get('ADMIN_USERNAME') if username.nil?      password = MySociety::Config.get('ADMIN_PASSWORD') if password.nil?      request.env["HTTP_AUTHORIZATION"] = "Basic " + Base64::encode64("#{username}:#{password}")  end  # Monkeypatch! Validate HTML in tests. -$html_validation_script = "/usr/bin/validate" # from Debian package wdg-html-validator +utility_search_path = MySociety::Config.get("UTILITY_SEARCH_PATH", ["/usr/bin", "/usr/local/bin"]) +$html_validation_script_found = false +utility_search_path.each do |d| +    $html_validation_script = File.join(d, "validate") +    if File.file? $html_validation_script and File.executable? $html_validation_script +        $html_validation_script_found = true +        break +    end +end  if $tempfilecount.nil?      $tempfilecount = 0 -    if File.exist?($html_validation_script) +    if $html_validation_script_found          module ActionController              module TestProcess                  # Hook into the process function, so can automatically get HTML after each request | 
