Sha256: 22e7dae26ac406ceaf137c5352d9cc2a76403a7404773c37fecd15ab3aab5726

Contents?: true

Size: 1.37 KB

Versions: 4

Compression:

Stored size: 1.37 KB

Contents

require 'spec_helper'

describe "QA Routes", :type => :routing do

  routes { Qa::Engine.routes }

  context "listing terms" do
    it "should route to index with an authority" do
      expect({ get: '/terms/vocab' }).to route_to(controller: 'qa/terms', action: 'index', vocab: 'vocab')
    end
    it "should route to index with an authority and a subauthority" do
      expect({ get: '/terms/vocab/sub' }).to route_to(controller: 'qa/terms', action: 'index', vocab: 'vocab', sub_authority: 'sub')
    end
  end

  context "searching for terms" do
    it "should route to searching for an authority" do
      expect({ get: '/search/vocab' }).to route_to(controller: 'qa/terms', action: 'search', vocab: 'vocab')
    end
    it "should route to searching for an authority and a subauthority" do
      expect({ get: '/search/vocab/sub' }).to route_to(controller: 'qa/terms', action: 'search', vocab: 'vocab', sub_authority: 'sub')
    end
  end

  context "displaying a single term" do
    it "should route to an authority" do
      expect({ get: '/show/vocab/term_id' }).to route_to(controller: 'qa/terms', action: 'show', vocab: 'vocab', id: 'term_id')
    end
    it "should route to an authority with a subauthority" do
      expect({ get: '/show/vocab/sub/term_id' }).to route_to(controller: 'qa/terms', action: 'show', vocab: 'vocab', sub_authority: 'sub', id: 'term_id')
    end
  end
  
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
qa-0.4.3 spec/routing/route_spec.rb
qa-0.4.2 spec/routing/route_spec.rb
qa-0.4.1 spec/routing/route_spec.rb
qa-0.4.0 spec/routing/route_spec.rb