We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c7d5b commit 50e2c17Copy full SHA for 50e2c17
test/functional/spectrums_controller_test.rb
@@ -21,6 +21,13 @@ class SpectrumsControllerTest < ActionController::TestCase
21
assert_response :redirect # to /analyze/spectrums/#, lets update this
22
end
23
24
+ test "should show search" do
25
+ get :search, :id => "cfl"
26
+ assert_response :success
27
+ assert_not_nil :spectrums
28
+ assert_not_nil :sets
29
+ end
30
+
31
test "should get edit" do
32
session[:user_id] = User.first.id # log in
33
get :edit, :id => spectrums(:one).id
0 commit comments