Initial commit

This commit is contained in:
Senad Uka
2020-05-31 22:38:19 +02:00
commit 858fafc3c5
1280 changed files with 65918 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
require "rails_helper"
describe VideoAnalyses::TalentReleasesController do
let(:current_user) { create(:user) }
let(:project) { create(:project, account: current_user.primary_account) }
let(:video) { create(:video, project: project) }
before do
sign_in(current_user)
end
describe "#index" do
it "responds with success" do
get :index, params: { video_id: video }, xhr: true
expect(response).to be_successful
end
end
end