summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/routing/licenses_routing_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/routing/licenses_routing_spec.rb b/spec/routing/licenses_routing_spec.rb
new file mode 100644
index 0000000..bc2d45d
--- /dev/null
+++ b/spec/routing/licenses_routing_spec.rb
@@ -0,0 +1,7 @@
+require "spec_helper"
+
+describe 'v1/licenses' do
+ it "can route to the index action" do
+ expect({ get: 'v1/licenses' }).to route_to(controller: 'v1/licenses', action: 'index')
+ end
+end