summaryrefslogtreecommitdiff
path: root/spec/controllers/application_controller_spec.rb
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-02-21 21:03:56 -0700
committermo khan <mo@mokhan.ca>2014-02-21 21:03:56 -0700
commit4f6de445141fc5542f61a1830c29ad61ecbeb49b (patch)
treed769b60454e95cdf63ff741dff4375bfb3a80d3e /spec/controllers/application_controller_spec.rb
parentf6eebdeb6aa56c4734102caf1817479d9e7b2765 (diff)
load well statuses and well types in application controller.
Diffstat (limited to 'spec/controllers/application_controller_spec.rb')
-rw-r--r--spec/controllers/application_controller_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb
new file mode 100644
index 0000000..a26c465
--- /dev/null
+++ b/spec/controllers/application_controller_spec.rb
@@ -0,0 +1,19 @@
+require "spec_helper"
+
+describe ApplicationController do
+ controller do
+ def index
+ render nothing: true
+ end
+ end
+
+ it "includes all well statuses with every response" do
+ get :index
+ assigns(:license_statuses).should =~ LicenseStatus::ALL
+ end
+
+ it "includes all well types with every response" do
+ get :index
+ assigns(:well_types).should =~ WellType::ALL
+ end
+end