14 lines
401 B
Ruby
14 lines
401 B
Ruby
|
|
require "spec_helper"
|
||
|
|
|
||
|
|
describe AutocompleteController do
|
||
|
|
describe "tag" do
|
||
|
|
let!(:tag1) { create(:canonical_fandom, name: "Match") }
|
||
|
|
let!(:tag2) { create(:canonical_fandom, name: "Blargh") }
|
||
|
|
|
||
|
|
it "returns only matching tags" do
|
||
|
|
get :tag, params: { term: "Ma", format: :json }
|
||
|
|
expect(JSON.parse(response.body)).to eq([{ "id" => "Match", "name" => "Match" }])
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|