blob: 9bba8c01b13202376a3dd3596b2e61e730816aec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'test_helper'
class CertsControllerTest < ActionController::TestCase
setup do
end
test "should require login" do
get :show
assert_response :redirect
assert_redirected_to login_url
end
test "should send cert" do
login
cert = stub :zipped => "adsf", :zipname => "cert_stub.zip"
Cert.expects(:pick_from_pool).returns(cert)
get :show
assert_response :success
assert_equal cert.zipped, @response.body
end
end
|