require 'spec_helper' describe 'web/views/checks.html.erb', :erb_view => true do it "should escape unsafe check characters in URI parameters" do @base_url = 'http://www.example.com/flapjack/' @states = {'abc-xyz-01' => [['Disk / Utilisation', 'OK', 'Looking good', '-', '-', false, false, nil, nil]]} @entities_sorted = ['abc-xyz-01'] @adjective = "all" page = render_erb('checks.html.erb', binding) expect(page).to match(%r{\?entity=abc-xyz-01&check=Disk%20%2F%20Utilisation}) end end