mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
11 lines
225 B
Ruby
11 lines
225 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "Points", type: :request do
|
|
describe "GET /index" do
|
|
it "returns http success" do
|
|
get "/points/index"
|
|
expect(response).to have_http_status(:success)
|
|
end
|
|
end
|
|
|
|
end
|