Files
sx-fc/spec/requests/stock_checks_spec.rb
2017-10-23 11:38:10 +06:30

11 lines
247 B
Ruby
Executable File

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