Files
sx-fc/spec/requests/employees_spec.rb
2017-04-05 08:24:21 +06:30

11 lines
239 B
Ruby

require 'rails_helper'
RSpec.describe "Employees", type: :request do
describe "GET /employees" do
it "works! (now write some real specs)" do
get employees_path
expect(response).to have_http_status(200)
end
end
end