11 lines
245 B
Ruby
Executable File
11 lines
245 B
Ruby
Executable File
require 'rails_helper'
|
|
|
|
RSpec.describe "Commissions", type: :request do
|
|
describe "GET /commissions" do
|
|
it "works! (now write some real specs)" do
|
|
get commissions_path
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|