mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
14 lines
271 B
Ruby
14 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
|