GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
commit  ab5bc9528509c7f8991ff6506cfc0a5dc13d2467
tree    9fd32676187bfb3b6ac47ca905686dd93de73085
parent  0f0f5bb31161cd83c524aec5545f40912b844a6c
passenger / test / StandardApplicationPoolTest.cpp
100644 22 lines (16 sloc) 0.44 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "tut.h"
#include "StandardApplicationPool.h"
#include "Utils.h"
 
using namespace Passenger;
 
namespace tut {
  struct StandardApplicationPoolTest {
    ApplicationPoolPtr pool, pool2;
    
    StandardApplicationPoolTest() {
      pool = ptr(new StandardApplicationPool("../bin/passenger-spawn-server"));
      pool2 = pool;
    }
  };
 
  DEFINE_TEST_GROUP(StandardApplicationPoolTest);
 
  #define USE_TEMPLATE
  #include "ApplicationPoolTest.cpp"
}