tests: add explore/posts controller tests.

This commit is contained in:
evazion
2017-02-06 01:56:14 -06:00
parent 443c41cff2
commit e26fb61ee9
3 changed files with 43 additions and 0 deletions

View File

@@ -15,6 +15,27 @@ module Explore
assert_response :success
end
end
context "#searches" do
should "render" do
get :searches
assert_response :success
end
end
context "#missed_searches" do
should "render" do
get :missed_searches
assert_response :success
end
end
context "#intro" do
should "render" do
get :intro
assert_response :success
end
end
end
end
end