about summary refs log tree commit diff
path: root/spec/controllers/tags_controller_spec.rb
blob: f433cf271c0c0ae2c8c086d772e1c268f416e80b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require 'rails_helper'

RSpec.describe TagsController, type: :controller do

  describe 'GET #show' do
    it 'returns http success' do
      get :show, params: { id: 'test' }
      expect(response).to have_http_status(:success)
    end
  end

end