mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
11 lines
244 B
Ruby
11 lines
244 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe "UserGroups", type: :request do
|
||
|
describe "GET /user_groups" do
|
||
|
it "works! (now write some real specs)" do
|
||
|
get user_groups_path
|
||
|
expect(response).to have_http_status(200)
|
||
|
end
|
||
|
end
|
||
|
end
|