Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search.rb « fixtures « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c26c6998ae9b0d5d5b0272f42ec64ebd6162d7b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'spec_helper'

describe SearchController, '(JavaScript fixtures)', type: :controller do
  include JavaScriptFixturesHelpers

  render_views

  before(:all) do
    clean_frontend_fixtures('search/')
  end

  it 'search/show.html' do
    get :show

    expect(response).to be_successful
  end
end