blob: 04669f53d219966c4fcb6512082b4e95a42a223b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'test_helper'
class CertsControllerTest < ActionController::TestCase
setup do
end
test "should send cert" do
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
assert_attachement_filename "cert_stub.zip"
end
end
|