2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Projects::WikisController do
|
|
|
|
it_behaves_like 'wiki controller actions' do
|
2020-07-28 23:09:34 +05:30
|
|
|
let(:container) { create(:project, :public, namespace: user.namespace) }
|
2020-06-23 00:09:42 +05:30
|
|
|
let(:routing_params) { { namespace_id: container.namespace, project_id: container } }
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|