mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-12 02:01:39 -05:00
15 lines
271 B
Ruby
15 lines
271 B
Ruby
|
|
require 'rails_helper'
|
||
|
|
|
||
|
|
RSpec.describe "Exports", type: :request do
|
||
|
|
describe "GET /create" do
|
||
|
|
before do
|
||
|
|
sign_in create(:user)
|
||
|
|
end
|
||
|
|
|
||
|
|
it "returns http success" do
|
||
|
|
get "/export"
|
||
|
|
expect(response).to have_http_status(:success)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|